0

I am new to python and trying to install Numpy package in pycharm but I get an error in return please help me solve this problem I have uploaded a picture of this error. I attempted to install pip within pycharm interpreter still no luck!

Failed to install NumPy Package

  • It seems its an internet connection, make sure your pycharm proxy is the same as what you set for your bowser. – Mehdi Feb 12 '19 at 14:10
  • Try https://stackoverflow.com/questions/25981703/pip-install-fails-with-connection-error-ssl-certificate-verify-failed-certi it seems that your Python installation is unable to use SSL due to missing packages and for that reason the package is not being installed. – Danilo Cabello Feb 12 '19 at 14:10
  • Did you try `pip install ssl` ? – hodisr Feb 12 '19 at 14:11
  • cannot install ssl- get same error – Murad Ahmed Feb 12 '19 at 14:16

1 Answers1

0

This is because of a mismatch between your version of pip and numpy. See answer. Thus, first you must upgrade your pip:

On Linux or macOS:

pip install -U pip

On Windows:

python -m pip install -U pip

Once pip is updated, you may install numpy.

newkid
  • 1,368
  • 1
  • 11
  • 27