2019年2月16日土曜日

[macOS] Python3のインストール

macOSをMojevaにアップデートした際に,Python3をインストールしていなかったので,Python3のインストールに関するメモです.

Homebrew,Xcode(Command Line Tool)がインストールされている前提です.
ターミナルから,以下のコマンドを実行します.
$ brew install python3

するとインストールが始まります.Python3は/usr/local/bin/python3にインストールされます.

インストールが終わった段階で,ターミナルから以下のコマンドを実行します.
$ python

すると,
Python 2.7.10 (default, Feb 22 2019, 21:17:52) 
[GCC 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.37.14)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
となり,相変わらずPython2が立ち上がります.

しかし,以下のコマンドを実行するとPython3が立ち上がります.
$ python3
Python 3.7.3 (default, Mar 27 2019, 09:23:15) 
[Clang 10.0.1 (clang-1001.0.46.3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

0 件のコメント :

コメントを投稿