问题描述
在我的 10 64位窗口的PyCharm中,我要安装"Scipy".
In PyCharm a "Python-IDE" in my window 10 64 bit, I want to install "Scipy".
首先在{Pycharm->文件->设置->解释器}中,我选择了C:\ Users \ XXXXX \ AppData \ Local \ Programs \ Python \ Python35-32 \ python.exe,然后安装了pip-matplotlib- numpy和labpack.现在,我想安装scipy软件包,但出现此错误.
First of all in {Pycharm -> File -> Settings -> interpreter} I chose C:\Users\XXXXX\AppData\Local\Programs\Python\Python35-32\python.exe then I installed pip - matplotlib - numpy and labpack. Now I want to install scipy package but I got this error.
我该如何解决这个问题?
How can I solve this issue?
推荐答案
听起来您安装了不是用LAPACK编译的numpy.
It sounds like you have an installation of numpy that was not compiled with LAPACK.
您可以从 Christopher Gohkle的用于Windows的Python扩展包"中获得预编译的版本. 页,位于numpy-1.11.2+mkl-cp35-cp35m-win32.whl
下.然后运行
You can get a pre-compiled version from Christopher Gohkle's "Python Extension Packages For Windows" page, under numpy-1.11.2+mkl-cp35-cp35m-win32.whl
. Then just run
pip install --user numpy-1.11.2+mkl-cp35-cp35m-win32.whl --upgrade
然后您应该尝试再次安装scipy
You should then try installing scipy again
这篇关于在Windows 10 64位中通过pycharm安装scipy软件包-python 3.5的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!