簡單介紹Mac下使用HomeBrew安裝Python 3.*版本並設定為預設值
#1、先查看Mac自帶的python,可以看到是2.7 .10的版本
2、查看python3的安裝套件
brew search python3
3、安裝python3
brew install python3
可以看到python3的實際安裝目錄是/usr/local/Cellar/python3/3.6.2
4、開啟設定檔並寫入python的外部環境變數
open ~/.bash_profile export PATH=${PATH}:/usr/local/Cellar/python3/3.6.2/bin
5、重新命名python
alias python="/usr/local/Cellar/python3/3.6.2/bin/python3.6"
6、讓設定檔生效
source ~/.bash_profile
7、使用python指令查看
python
8、如果沒有設定成功的話使用which python3查看此時Python3的位置是否正確,若不正確重複步驟4、5、6
which python3
#更多Python相關技術文章,請造訪Python教學欄位學習!
以上是mac中怎麼安裝python3的詳細內容。更多資訊請關注PHP中文網其他相關文章!