在32位Windows 7计算机上安装Python 3.5中的scipy

前端之家收集整理的这篇文章主要介绍了在32位Windows 7计算机上安装Python 3.5中的scipy前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在尝试使用预构建的二进制文件在我的 Windows 7机器上安装Scipy到我的 Python 3.5(32位)安装:
http://www.lfd.uci.edu/~gohlke/pythonlibs

我按顺序安装了以下库

numpy‑1.10.1+mkl‑cp35‑none‑win32.whl
scipy‑0.16.1‑cp35‑none‑win32.whl

然后,当尝试使用已安装的软件包时,我得到以下错误

from scipy import sparse
< ... Complete error trace ommitted ... >
packages\scipy\sparse\csr.py",line 13,in <module>
    from ._sparsetools import csr_tocsc,csr_tobsr,csr_count_blocks,\
ImportError: DLL load Failed: The specified module could not be found.

但是,如果我按照Python 3.4的相同过程替换安装程序:

numpy‑1.10.1+mkl‑cp35‑none‑win32.whl
scipy‑0.16.1‑cp35‑none‑win32.whl

一切似乎都有效.是否有其他依赖项或安装包,我缺少Python 3.5安装?

请务必注意您提供的链接中的这一行:

Many binaries depend on NumPy-1.9+MKL and the Microsoft Visual C++
2008 (x64,x86,and SP1 for CPython 2.6 and 2.7),Visual C++ 2010
(x64,for CPython 3.3 and 3.4),or the Visual C++ 2015 (x64 and
x86 for CPython 3.5) redistributable packages.

根据您的描述下载相应的Microsoft Visual C Redistributable Package,该软件包应为this.

我有一个类似的问题,不记得确切的问题,我下载了一个为我的系统,它工作正常.别的我知道.

原文链接:https://www.f2er.com/windows/364863.html

猜你在找的Windows相关文章