Python,mac下如何安装pip、ipython

https://www.jianshu.com/p/746fe7145b99

安装环境:
Mac系统版本:OS X 10.11.1
Python版本 3.7

首先安装pip:

1.打开终端:
2.运行脚本:curl https://bootstrap.pypa.io/get-pip.py | python3
3.输入password
成功!!!

安装ipython的脚本

sudo pip install ipython

安装 Numpy(数值计算扩展)的脚本

pip install numpy

安装 Matplotlib (绘图库)的脚本

pip install matplotlib

 

https://www.jianshu.com/p/62bea7d3708c

猜你喜欢

转载自www.cnblogs.com/jwg-fendi/p/10847240.html