Mac下python3以及科学计算的numpy matplotlib scipy安装

Mac下python3以及科学计算的numpy matplotlib scipy安装

python3的安装

python3.x增加了PEP新特性并且不会影响2.X,可以两个版本共同存在。
所以我们在官网上下载安装包安装即可。以python3.5为例,地址:
https://www.python.org/ftp/python/3.5.0/python-3.5.0-macosx10.6.pkg
安装成功后打开终端terminal,输入python3即可进入python交互式环境进行编程

python3的使用

print(‘helloword’)

科学计算的库安装

安装ipython numpy matplotlib scipy等只需要在终端输入

pip3 install ipython numpy matplotlib scipy

安装可能有点慢,挂代理安装下载速度会快很多

你可能感兴趣的:(python)