Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.34 KB | None | 0 0
  1. export PATH=/usr/local/bin:$PATH
  2. export ARCHFLAGS="-arch x86_64"
  3.  
  4. if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi
  5. if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi
  6.  
  7. alias p2='pyenv local 2.7.8'
  8. alias p3='pyenv local 3.4.2'
  9.  
  10. export PYENV_ROOT="$HOME/.pyenv"
  11. export PATH="$PYENV_ROOT/bin:$PATH"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement