0
0

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.

macでpythonインストール

Posted at

方針

初心者にpyenvは要らない

brew info python
brew install python #3系の最新をインストール
~/.zshrc
export PATH=/usr/local/bin:$PATH
 which python #/usr/bin/python
python -V #2.7.16
python3 -V #3.9.6
~/.zshrc
export PATH=/usr/local/opt/python/libexec/bin:$PATH
python -V #3.9.6

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?