Mac下安装python
安装
Mac系统自带Python2.7,而我们安装Python3的时候,可以通过brew命令安装或者官网的pkg安装
# 更新brew(非必须步骤)
brew update
# 安装Python3
brew install python3
路径
根据不同的安装方法,Python存放于不同的路径
来源 | Python安装路径 |
---|---|
系统默认(2.7) | /System/Library/Frameworks/Python.framework/Versions/2.7 |
brew安装(2.7/3.x) | /usr/local/Cellar/python |
官网pkg安装(3.x) | /Library/Frameworks/Python.framework/Versions/3.x |