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 #!/bin/zsh
if [[ "$OSTYPE" == "linux-gnu" ]]; then if [[ "$OSTYPE" == "linux-gnu" ]]; then
if which pyenv > /dev/null; then
export PATH=/usr/local/bin:$PATH export PATH=/usr/local/bin:$PATH
export PYENV_ROOT="$HOME/.pyenv" export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH" export PATH="$PYENV_ROOT/bin:$PATH"
@ -9,6 +10,7 @@ if [[ "$OSTYPE" == "linux-gnu" ]]; then
eval "$(pyenv init -)" eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)" eval "$(pyenv virtualenv-init -)"
fi fi
fi
if which pyenv-virtualenv-init > /dev/null; then if which pyenv-virtualenv-init > /dev/null; then
export PATH=/usr/local/bin:$PATH export PATH=/usr/local/bin:$PATH

Loading…
Cancel
Save