Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to download Scipy for Python3.3? [closed]

Tags:

python

scipy

I want to install Scipy for Python3.3 in Windows. But I only found Scipy installation file for Python up to the version 3.2 in the following link:

http://sourceforge.net/projects/scipy/files/scipy/0.12.0b1/

So is it still not available at this time? Any suggestions?

like image 240
tonga Avatar asked Mar 27 '13 15:03

tonga


People also ask

Does Python 3.10 support SciPy?

I suppose this is caused because Scipy has no Python 3.10 support (yet), so trying to install it with that Python should fail somewhere. Consider using a lower Python version, or use Anaconda (like a user suggested).

How do I download SciPy from Python?

We can install the SciPy library by using pip command; run the following command in the terminal: pip install scipy.

Does Python 3.10 have pip?

The current version of pip works on: Windows, Linux and MacOS. CPython 3.7, 3.8, 3.9, 3.10 and latest PyPy3.


1 Answers

I highly recommend getting all of the components of Scipy-stack, which is just below the scipy files linked in the comment above. Unfortunately the maintainer hasn't updated scipy-stack to 3.3 yet (I emailed him about it), but all of the components (numpy-MKL, scipy, matplotlib, ipython, pandas, sympy, and nose), as well as all the dependencies (Python-dateutil, distribute, gmpy, PIL, pygments, pyreadline, pytz, statsmodels, and tornado) have 3.3 versions available for both Win32 and AMD64. Depending on what sort of computing you'll be doing, these packages will give you a great start, and as they're all from the same source they should all work well together.

UPDATE

I just heard from Christoph Gohlke, and he is holding off on updating scipy-stack until numpy-1.7.1, scipy-0.12, and ipython-0.13.2 are released, so probably a few months. If you want to build your own version, his redist_wininst.py script lets you do just that.

UPDATE 2

scipy-stack has been updated with new versions of its components, for both Python 2.7 and 3.3. Enjoy!

like image 168
MattDMo Avatar answered Oct 18 '22 19:10

MattDMo