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 5 years have passed since last update.

Macでptyhon3

Last updated at Posted at 2020-01-21

Macでptyhon3

備忘録として残しておく

環境

MacOSのバージョン10.14.6
Pythonのバージョン2.7.10

3系の導入 

公式pkgをDL
https://www.python.org/ftp/python/3.8.1/python-3.8.1-macosx10.9.pkg
指示通りにインストール

デフォルトをpython3にする

$ echo 'alias python=python3' >> ~/.bash_profile
$ source ~/.bash_profile

2.7.10はpython2として起動できるようにシンボリックリンクを貼っておく

$ cd /usr/local/bin
$ sudo ln -s /usr/bin/python2.7 python2

動作確認

$ python -V
Python 3.8.1

$ python2 -V
Python 2.7.10
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?