安裝平台:macOS 10.12.4。
1)
安裝XCode, 開啟它並Accept License。
2)
安裝Homebrew,指令參考官網:https://brew.sh/index_zh-tw.html
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
3)
檢查brew狀況確認環境,依照畫面提示進行修正。
$ brew doctor
我遇到的狀況是要環境變數$PATH要加入/usr/local/sbin,修改了~/.bash_profile內容,我的$PATH顯示出來會像這樣:
$ echo $PATH /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/Wireshark.app/Contents/MacOS:/Applications/DisplayCAL/Argyll_V1.9.2/bin:/usr/local/sbin
4)
更新brew並安裝Python3。
$ brew update $ brew install python3
5)
確認Python3版本。
$ python3 --version Python 3.6.1