简体   繁体   中英

Installing scipy for python 2.7

I cannot seem to get SciPy working for Python 2.7 on a 32 bit Windows XP platform. 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

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):

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

It works on my Banana Pi single board computer.

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. regular pip install scipy didnt work for 2.x

You can install scikit-image using "pip install -U scikit-image" and scipy will be automatically installed. You can even install just scipy using "pip install scipy"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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