Check the version that can be installed
pyenv install --list
Version installation
pyenv install 3.5.0
Check the version that can be switched
pyenv versions
Check the current version
python --version
Version switching
global will reflect the entire version, local will reflect the version specified in that directory
pyenv global 3.5.0
pyenv local 2.7.10
Recommended Posts