4

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

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343
Orpheus
  • 219
  • 1
  • 4
  • 9

1 Answers1

1

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.

William Martens
  • 753
  • 1
  • 8
  • 27