• windows 下常用的安装方式是pip install scipy但是安装会发现失败

    后来查资料才发现需要在它之前需要安装一个numpy+mkl这样的包。而numpy可以正常安装成功,scipy失败原因是scipy要依赖于numpy和其他的很多库(如LAPACK/BLAS)

    1.由于国外网站太慢,所以这里使用的是阿里的镜像
    https://mirrors.aliyun.com/pypi/simple/

    2.去官网查看,官方给出的安装方法如下:【pip安装和apt的方式两种】

    python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
    sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose

    3.在windows下我们使用pip进行安装

    python -m pip install -i https://mirrors.aliyun.com/pypi/simple/ --user numpy scipy matplotlib ipython jupyter pandas sympy nose