refactor: better pyenv support

This commit is contained in:
Price Hiller 2022-06-17 12:56:24 -05:00
parent 62eddef8be
commit ca69e82ff3

View File

@ -14,7 +14,8 @@ export PATH="$HOME/.bin:$PATH"
export PATH="$PATH:/opt/homebrew/Cellar/llvm/13.0.0_2/bin" export PATH="$PATH:/opt/homebrew/Cellar/llvm/13.0.0_2/bin"
# Python with pyenv # Python with pyenv
eval "$(pyenv init --path)" export PYENV_ROOT="${HOME}/.pyenv"
export PATH="${PATH}:${PYENV_ROOT}/bin"
eval "$(pyenv init -)" eval "$(pyenv init -)"
# Mac pathing beneath # Mac pathing beneath