简体   繁体   English

为python 2.7安装scipy

[英]Installing scipy for python 2.7

I cannot seem to get SciPy working for Python 2.7 on a 32 bit Windows XP platform. 我似乎无法让SciPy在32位Windows XP平台上使用Python 2.7。 I'd rather not build my own copy. 我宁愿不构建我自己的副本。 Does anyone know where I could find a installer for it? 有谁知道我在哪里可以找到它的安装程序? I tried this site , but it didn't work. 我试过这个网站 ,但它没有用。

Download it from here . 这里下载。

I'm not sure about that site you referred to, but I always start at: http://www.scipy.org 我不确定你提到的那个网站,但我总是从: http//www.scipy.org开始

for future googlers a potential solution is to install the latest version of scipy that supports python2.7 which is 0.16 (I am not sure that it is the last but it is surely among the latest): 对于未来的googlers一个潜在的解决方案是安装支持python2.7的最新版scipy,这是0.16 (我不确定它是最后一个,但它肯定是最新的):

pip install scipy==0.16

worked for me. 为我工作。

Try: 尝试:

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

It works on my Banana Pi single board computer. 它适用于我的Banana Pi单板计算机。

Install miniconda Install python 2.7.13 or whatever the latest version of 2.x by running conda install python=2.7.13 switch to python 2.x in your IDE (in my case pyzo) from the miniconda directory conda install scipy and it worked for me. 安装miniconda安装python 2.7.13或任何最新版本的2.x通过运行conda install python=2.7.13从你的IDE(在我的情况下pyzo)切换到python 2.x从miniconda目录conda install scipy并且它工作为了我。 regular pip install scipy didnt work for 2.x 常规pip install scipy没有为2.x工作

You can install scikit-image using "pip install -U scikit-image" and scipy will be automatically installed. 您可以使用“pip install -U scikit-image”安装scikit-image,并自动安装scipy。 You can even install just scipy using "pip install scipy" 您甚至可以使用“pip install scipy”安装scipy

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM