14

我似乎无法让 SciPy 在 32 位 Windows XP 平台上为 Python 2.7 工作。我宁愿不建立自己的副本。有谁知道我在哪里可以找到它的安装程序?我试过这个网站,但没有用。

4

5 回答 5

20

这里下载。

我不确定你提到的那个网站,但我总是从:http ://www.scipy.org

于 2011-02-25T19:42:04.060 回答
8

对于未来的谷歌人来说,一个潜在的解决方案是安装支持的最新版本的 scipy (我不确定它是最后一个,但它肯定是最新的)python2.70.16

pip install scipy==0.16

为我工作。

于 2019-06-26T13:04:22.467 回答
2

尝试:

sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose

它适用于我的 Banana Pi 单板计算机。

于 2016-12-29T08:28:34.210 回答
0

安装 miniconda 安装 python 2.7.13 或任何最新版本的 2.x, 方法是conda install python=2.7.13 在你的 IDE(在我的情况下为 pyzo)中从 miniconda 目录运行 switch 到 python 2.x,它对我有用 conda install scipy 。常规pip install scipy不适用于 2.x

于 2017-06-06T17:41:10.357 回答
0

您可以使用“pip install -U scikit-image”安装 scikit-image,scipy 将自动安装。您甚至可以使用“pip install scipy”安装 scipy

于 2018-03-18T17:45:53.563 回答