PyEnv: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
brew install pyenv | brew install pyenv | ||
brew install pyenv-virtualenv | |||
cat <<< ' | cat <<< ' | ||
# pyenv config | # pyenv config | ||
export PYENV_ROOT="${HOME}/.pyenv" | export PYENV_ROOT="${HOME}/.pyenv" | ||
[[ -d ${PYENV_ROOT}/bin ]] && export PATH="${PYENV_ROOT}/bin:${PATH}" | [[ -d ${PYENV_ROOT}/bin ]] && export PATH="${PYENV_ROOT}/bin:${PATH}" | ||
eval "$(pyenv init -)"'| tee -a ~/.bashrc >/dev/null | eval "$(pyenv init -)" | ||
eval "$(pyenv virtualenv-init -)"'| tee -a ~/.bashrc >/dev/null | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 59: | Line 61: | ||
* [https://stackoverflow.com/questions/30407446/ PyEnv » Choose Virtualenv Directory] | * [https://stackoverflow.com/questions/30407446/ PyEnv » Choose Virtualenv Directory] | ||
* [https://joachim8675309.medium.com/managing-python-versions-with-pyenv-ddd7882eb39e PyEnv » Managing Python Versions] | * [https://joachim8675309.medium.com/managing-python-versions-with-pyenv-ddd7882eb39e PyEnv » Managing Python Versions] | ||
* [https://github.com/pyenv/pyenv-virtualenv PyEnv » Plugins » <code>virtualenv</code>] | |||
* [https://github.com/pyenv/pyenv PyEnv] | * [https://github.com/pyenv/pyenv PyEnv] | ||
Revision as of 09:42, 3 June 2024
brew install pyenv
brew install pyenv-virtualenv
cat <<< '
# pyenv config
export PYENV_ROOT="${HOME}/.pyenv"
[[ -d ${PYENV_ROOT}/bin ]] && export PATH="${PYENV_ROOT}/bin:${PATH}"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"'| tee -a ~/.bashrc >/dev/null
Playground
pyenv install -list-all
pyenv install 3.10.14
pyenv rehash
|
pyenv global system 3.10.14
pyenv global 3.10.14
pyenv global
|
pyenv shell 3.10.14
pyenv shell system
python -V
|
| ||
cat ./.python-version
pyenv which python
pyenv which pip
|
pyenv virtualenv 3.10.14 Powerline
pyenv activate Powerline
pyenv deactivate
|
References
| ||