Reputation: 15862
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.
Upvotes: 14
Views: 74042
Reputation: 111
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.
Upvotes: 9
Reputation: 1
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"
Upvotes: 0
Reputation: 4233
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
Upvotes: 0
Reputation: 21
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.
Upvotes: 2
Reputation: 612794
Download it from here.
I'm not sure about that site you referred to, but I always start at: http://www.scipy.org
Upvotes: 20