1
0
Fork 0

support PYTHONUSERBASE per PEP 370

pull/577/head
Arthur Noel 11 years ago
parent fedad8e9cf
commit d1c894fcdb

@ -16,9 +16,12 @@ elif (( $+commands[pyenv] )); then
eval "$(pyenv init -)"
# Prepend PEP 370 per user site packages directory, which defaults to
# ~/Library/Python on Mac OS X and ~/.local elsewhere, to PATH.
# ~/Library/Python on Mac OS X and ~/.local elsewhere, to PATH. The
# path can be overridden using PYTHONUSERBASE.
else
if [[ "$OSTYPE" == darwin* ]]; then
if [[ -n $PYTHONUSERBASE ]]; then
path=($PYTHONUSERBASE/bin $path)
elif [[ "$OSTYPE" == darwin* ]]; then
path=($HOME/Library/Python/*/bin(N) $path)
else
# This is subject to change.

Loading…
Cancel
Save