From 06a02883c8218388f198265fdd5d062dd0550294 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Fri, 14 Feb 2020 10:20:38 -0500 Subject: [PATCH] Setup pyenv --- bash/.bash_profile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bash/.bash_profile b/bash/.bash_profile index 5b4f1bc..8c3af3d 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -9,3 +9,9 @@ export PATH="/usr/local/opt/texinfo/bin:$PATH" [[ -f "$HOME/.bash_local" ]] && source "$HOME/.bash_local" [[ -f "$HOME/.profile" ]] && source "$HOME/.profile" + +# Setup pyenv (https://github.com/pyenv/pyenv) +if command -v pyenv 1>/dev/null 2>&1; +then + eval "$(pyenv init -)" +fi