Browse Source

Explicitly set PYENV_ROOT

master
Greg Anders 7 years ago committed by Indrajit Raychaudhuri
parent
commit
9c528efa60
  1. 2
      modules/python/init.zsh

2
modules/python/init.zsh

@ -9,10 +9,12 @@ @@ -9,10 +9,12 @@
# Load manually installed pyenv into the shell session.
if [[ -s "$HOME/.pyenv/bin/pyenv" ]]; then
path=("$HOME/.pyenv/bin" $path)
export PYENV_ROOT=$(pyenv root)
eval "$(pyenv init -)"
# Load package manager installed pyenv into the shell session.
elif (( $+commands[pyenv] )); then
export PYENV_ROOT=$(pyenv root)
eval "$(pyenv init -)"
# Prepend PEP 370 per user site packages directory, which defaults to

Loading…
Cancel
Save