Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Numpy with python 3.0

Tags:

NumPy installer can't find python path in the registry.

Cannot install Python version 2.6 required, which was not found in the registry.

Is there a numpy build which can be used with python 3.0?

like image 882
iceman Avatar asked Feb 09 '10 19:02

iceman


People also ask

Is NumPy compatible with Python 3?

As this is a newer version of Python, the Numpy version also differs as you can see in the image below. Note: The commands are the same for all operating systems except for Fedora. If you are working on this OS, the command to install NumPy with Python 3 is: python3 -m pip install numpy .

What version of Python does NumPy use?

NumPy 1.19. The minimum supported Python version is now Python 3.6.

Is NumPy included in Python?

The only prerequisite for installing NumPy is Python itself. If you don't have Python yet and want the simplest way to get started, we recommend you use the Anaconda Distribution - it includes Python, NumPy, and many other commonly used packages for scientific computing and data science.


2 Answers

Guido van Rossum (creator of Python) says he is keen to see NumPy work in Python 3.x, because it would enable many dependent libraries to move to 3.x.

Update 2010-08-05: NumPy version 1.5 supports Python 3.x, and SciPy will soon. NumPy 1.5 beta is available for download now.

Update 2012-05-31: SciPy 0.10.0 added support for Python 3.1 in November 2011.

like image 148
Craig McQueen Avatar answered Nov 16 '22 02:11

Craig McQueen


there is not [yet] a version of numpy that has been ported to Python 3.

the last update I heard from the people on the project was this: http://blog.jarrodmillman.com/2009/01/when-will-numpy-and-scipy-migrate-to.html

for now, if you need Numpy, you are stuck with Python 2.x

like image 30
Corey Goldberg Avatar answered Nov 16 '22 01:11

Corey Goldberg