python3.6安装numpy,scipy,matplotlib

今天做实验用到zipf分布,需要用scipy库,pycharm安装结果不好用,python3.6安装numpy,scipy,matplotlib
装半天还报错,就很气啊
然后发现应该是和之前装的numpy八字不合,二话不说我先卸了这货
cmd运行
pip uninstall numpy

要装就给这俩装一对儿才行,python3.6的很多包自动安装都会找不到资源,http://www.lfd.uci.edu/~gohlke/pythonlibs/

从这里下载numpy和scipy,记住顺序,先装numpy,再装scipy
python3.6安装numpy,scipy,matplotlib
安装方式如下图:
python3.6安装numpy,scipy,matplotlib

接下来安装scipypython3.6安装numpy,scipy,matplotlib

安装方式是一样的
python3.6安装numpy,scipy,matplotlib

测试一下:
python3.6安装numpy,scipy,matplotlib

完美运行,pycharm里看看好用不
python3.6安装numpy,scipy,matplotlib

可以可以
接下来matplotlib就随意安装了,可以和上面的方式一样,也可以直接用命令pip install matplotlib安装,pycharm自动安装也没问题。
上面那个网址很有用,各位可以收藏,python3的各种库都有,以后就不用到处找了。