1
1

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.

python バージョン切り替え

Last updated at Posted at 2021-02-11

環境
macOS catalina (10.15.7)
MacBook Air (Retina, 13-inch, 2019)
1.6 GHz デュアルコアIntel Core i5
8 GB 2133 MHz LPDDR3

#切り替えられるpythonのバージョンの確認

$ pyenv versions  
  system
  3.6.1
* 3.6.2 (set by /Users/gen/.pyenv/version)
  3.6.5
  3.8.1
  anaconda3-4.2.0
  anaconda3-4.2.0/envs/py

#現在のバージョンの確認

$ python --version                        
 Python 3.6.2

#3.8.1に変更

$ pyenv global 3.8.1

#変更されたかの確認

$ python --version
  Python 3.8.1

変更されました.

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?