From 8b1f4d6c33b0b3b88db7a310d19f13fb4b7968c7 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 30 May 2017 18:04:30 +0300 Subject: [PATCH] .bashrc: Remove pyenv --- .bashrc | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.bashrc b/.bashrc index 665e42c..6744dc4 100644 --- a/.bashrc +++ b/.bashrc @@ -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"