Browse Source

Add pyenv check in initializations

master
Taylor Bockman 1 year ago
parent
commit
f8bccc51ac
  1. 2
      initializations.zsh

2
initializations.zsh

@ -1,6 +1,7 @@
#!/bin/zsh
if [[ "$OSTYPE" == "linux-gnu" ]]; then
if which pyenv > /dev/null; then
export PATH=/usr/local/bin:$PATH
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
@ -8,6 +9,7 @@ if [[ "$OSTYPE" == "linux-gnu" ]]; then
# For whatever reason the linux version of pyenv doesnt install `pyenv-virtualenv-init`.
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
fi
fi
if which pyenv-virtualenv-init > /dev/null; then

Loading…
Cancel
Save