PyEnv: Difference between revisions
Jump to navigation
Jump to search
Line 60: | Line 60: | ||
| valign="top" | | | valign="top" | | ||
* [https://serverfault.com/questions/283129/ SSH » Connection Hang Forever] | * [https://serverfault.com/questions/283129/ SSH » Connection Hang Forever] | ||
* [[Python/Distribution]] | |||
* [[Ruby on Rails]] | * [[Ruby on Rails]] | ||
* [[Homebrew]] | * [[Homebrew]] | ||
* [[Linuxbrew]] | * [[Linuxbrew]] | ||
* [[Python2]] | |||
* [[TMux]] | * [[TMux]] | ||
* [[CURL]] | * [[CURL]] |
Revision as of 09:25, 2 June 2024
brew install pyenv
cat <<< '
# pyenv config
export PYENV_ROOT="${HOME}/.pyenv"
[[ -d ${PYENV_ROOT}/bin ]] && export PATH="${PYENV_ROOT}/bin:${PATH}"
eval "$(pyenv init -)"'| tee -a ~/.bashrc >/dev/null
Playground
pyenv install -list-all
pyenv install 3.10.14
cat ./.python-version
|
pyenv global system 3.10.14
pyenv global 3.10.14
pyenv global
|
pyenv shell 3.10.14
pyenv shell system
python -V
|
| ||
References
| ||