安装numpy, pandas, scipy 和matplotlib

首先找到python的安装文件夹, 在pathon35/Script文件夹里新建一个bat文件(我安装的是3.5版本),通过文本编辑器在里面写上cmd,点击它就可以直接打开一个该路径下的命令行窗口。
安装numpy, pandas, scipy 和matplotlib
在命令行窗口下运行
pip install numpy
pip install scipy
等等, 就可以安装相应的库。对于3开头的版本, 使用pip3替代pip。如果版本安装错误,想卸载后重装,可使用pip uninstall numpy.

安装numpy, pandas, scipy 和matplotlib