2018年11月20日星期二

MAC_048:安装 Python

环境:MAC OS X 10.14.1 (18B75)

1. 安装 Python2
MAC 本身自带 Python 2
(1)检查 Python 版本

$ python --version
 Python 2.7.10
(2)安装 pip
pip 是 python 包管理工具。

$ sudo easy_install pip
(3)查看 pip 版本

$ pip --version
pip 18.1 from /Library/Python/2.7/site-packages/pip-18.1-py2.7.egg/pip (python 2.7)
(4)卸载 pip

$ sudo pip uninstall pip

2. 安装 Python3
macOS(Mac OS X)可用 Homebrew 安装 Python 3,再用通过 get-pip.py 安装 pip
(1)安装 Homebrew
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
(2)安装 Python3
$ brew install python3
(3)查看 Python3 版本
$ python3 --version
Python 3.7.1 (default, Nov  6 2018, 18:46:03)
[Clang 10.0.0 (clang-1000.11.45.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
(4)安装 pip3
$ curl https://bootstrap.pypa.io/get-pip.py | python3
(5)查看 pip3 版本
$ pip3 --version
pip 18.1 from /usr/local/lib/python3.7/site-packages/pip (python 3.7)

参考文献
1. https://brew.sh/index_zh-cn.html

没有评论: