特定のディレクトリのみで有効なpythonバージョンを指定
指定方法
$ cd test
/test$ pyenv local 3.9.5
/test$ python --version
Python 3.9.5
解除方法
$ cd test
/test$ pyenv local --unset
/test$ python --version
No global python version has been set yet. Please set the global version by typing:
pyenv global 3.7.2
全体で有効なpythonバージョンを指定
指定方法
$ pyenv global 3.9.5
/test$ python --version
Python 3.9.5
解除方法
$ pyenv global --unset
$ python --version
No global python version has been set yet. Please set the global version by typing:
pyenv global 3.7.2