2015-03-01 10:09:06 +05:00
|
|
|
# PyENV exports.
|
|
|
|
|
|
|
|
# This exports should work only if config states this.
|
|
|
|
if [ "${USE_PYENV}" -eq 0 ]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2015-05-12 23:18:52 +05:00
|
|
|
export PYENV_ROOT="${PYENV_PATH}"
|
2015-03-01 10:09:06 +05:00
|
|
|
export PATH="${PYENV_PATH}/bin:$PATH"
|
2015-05-12 23:18:52 +05:00
|
|
|
eval "$(pyenv init -)"
|