13 lines
364 B
Plaintext
13 lines
364 B
Plaintext
# pyenv support
|
|
export PYENV_ROOT="${HOME}/.pyenv"
|
|
[[ -d ${PYENV_ROOT}/bin ]] && export PATH="${PYENV_ROOT}/bin:${PATH}"
|
|
eval "$(pyenv init -)"
|
|
|
|
# pyenv-virtualenv
|
|
eval "$(pyenv virtualenv-init -)"
|
|
|
|
# Setting PATH for Python 3.12
|
|
# The original version is saved in .zprofile.pysave
|
|
PATH="/Library/Frameworks/Python.framework/Versions/3.12/bin:${PATH}"
|
|
export PATH
|