mac os 上安装python 和 pip
python 2.7
mac os 10.14 Mojave 自带 python 2.7
所以,只需要安装下 pip : sudo easy_install pip
1 2 | $ pip --version pip 18.1 from /Library/Python/2.7/site-packages/pip-18.1-py2.7.egg/pip (python 2.7) |
python 3
- 到App Store 安装 Xcode
- Install Brew https://brew.sh/#install
1
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Install Python3 with Brew
1
brew install python3
- 设置PATH environment
1 2 3 4
# Add the following line to your ~/.profile file export PATH=/usr/local/bin:/usr/local/sbin:$PATH export PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"