Unable to install Numpy

6.4k views Asked by At

I'm unable to install NumPy. I'm getting the following error ERROR: Could not find a version that satisfies the requirement numpy (from versions: none) ERROR: No matching distribution found for numpy

My python version is 3.9.0

1

There are 1 answers

2
William Martens On BEST ANSWER

EDIT: Nice it worked for you:

pip3 install numpy

If it, for some reason - for someone in the future wouldn't work in some way:

sudo apt update
sudo apt install python3

sudo apt install pip pip3 
sudo apt install python3 python-numpy python3-numpy

pip install numpy
pip3 install numpy

Depending on which version you want.

Hope this can be useful for someone in the future!

Edit2: Orpheus comment:

pipwin needs to be installed for installing numpy, pip install pipwin and then pipwin install numpy – Orpheus

Regards.