代码改变世界

python widows安裝scipy

2019-01-25 00:43  ZealouSnesS  阅读(390)  评论(0编辑  收藏  举报

https://blog.csdn.net/github_39611196/article/details/76718707

 

Python3.x直接运行pip install scipy即可。
Python 2.7中安装SciPy时,使用pip install scipy会出现运行错误:
(忘记截图了)
解决方法:
一、在cmd中安装wheel库,命令:pip install wheel;
二、在whl下载地址 下载 :
numpy‑1.13.1+mkl‑cp35‑cp35m‑win32.whl(32位系统)
numpy‑1.13.1+mkl‑cp35‑cp35m‑win_amd64.whl(64位系统)
然后使用 pip install numpy‑1.13.1+mkl‑cp35‑cp35m‑xxx.whl 进行安装(根据机器位数替换xxx)