.bashrc: Remove pyenv

This commit is contained in:
Alan Orth 2017-05-30 18:04:30 +03:00
parent 398ac9b06d
commit 8b1f4d6c33
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 0 additions and 14 deletions

14
.bashrc
View File

@ -42,20 +42,6 @@ if [[ $? -eq 0 ]]; then
export PATH=$PATH:node_modules/.bin
fi
# Enable pyenv
# See: https://github.com/yyuu/pyenv#basic-github-checkout
if [[ -d ~/.pyenv ]]; then
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
# optionally enable pyenv-virtualenv
# See: https://github.com/yyuu/pyenv-virtualenv
if [[ -d ~/.pyenv/plugins/pyenv-virtualenv ]]; then
eval "$(pyenv virtualenv-init -)"
fi
fi
# If a private bin directory exists, add it to PATH
[[ -d ~/bin ]] && PATH="$PATH:~/bin"