Python 3.6: Trying To Pip Install Numpy
I'm just trying a simple pip3.6 install numpy, and I get the following error: distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('numpy>
Solution 1:
Actually, a bit above the error I ended up noticing:
Download error on https://pypi.python.org/simple/numpy/: [SSL: CERTIFICATE_VERIFY_FAILED]
certificate verify failed (_ssl.c:749) -- Some packages may not be found!
The problem was using a temporary different network and used:
pip3.6 install --trusted-host pypi.python.org numpy
which solved the issue for now.
Post a Comment for "Python 3.6: Trying To Pip Install Numpy"