2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

pyenv利用バージョンの指定と解除方法

Last updated at Posted at 2021-09-29

特定のディレクトリのみで有効な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

参考

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?