Python

大多数(类) Unix 系统均自带 Python 环境:

$ python
Python 2.7.10 (default, Aug 17 2018, 17:41:52)
[GCC 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.0.42)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>

系统自带 Python 环境比较老旧,一般都是 2.7 。 因此,想用新特性,必须按照新版本 PythonPython官网 提供了安装指引,但是 OSX 下使用 Homebrew 安装更为便捷。

安装Python3

安装新 Python 前,需要先确保 xcode 已经安装就绪:

$ xcode-select --install

之后运行以下两行命令即可:

$ brew update
$ brew install python

如果安装结果显示 python 未链接,则需要再运行以下命令:

$ brew link python

至此, Python 安装完毕,可以用起来了:

$ python3
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.
>>>

下一步

订阅更新,获取更多学习资料,请关注我们的 微信公众号

../_images/wechat-mp-qrcode.png

小菜学编程

微信打赏