【发布时间】:2015-03-27 06:02:11
【问题描述】:
我正在尝试将 python 和一系列软件包安装到 64 位 Windows 7 桌面上。我已经安装了 Python 3.4,安装了 Microsoft Visual Studio C++,并成功安装了 numpy、pandas 和其他一些。尝试安装 scipy 时出现以下错误;
numpy.distutils.system_info.NotFoundError: no lapack/blas resources found
我是离线使用pip install,我使用的安装命令是;
pip install --no-index --find-links="S:\python\scipy 0.15.0" scipy
我已阅读此处关于需要编译器的帖子,如果我理解正确的话,它就是 VS C++ 编译器。我正在使用 2010 版本,因为我正在使用 Python 3.4。这适用于其他软件包。
我必须使用 windows 二进制文件还是有办法让 pip install 工作?
非常感谢您的帮助
【问题讨论】:
-
感谢 Eryksun,我正在下载二进制文件,看看是否能解决问题。
-
令人沮丧的是,当我尝试安装二进制文件时,它声称我没有安装 Python 3.4,即使它在 PATH 中。
-
试试
py -3.4 -m pip install SomePackage.whl -
我也有这个问题。我无法让 pip 工作,但这对我有用(在寡妇上):sourceforge.net/projects/scipy/files/scipy
标签: python windows python-3.x numpy pip