python3安装numpy失败

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u012033124/article/details/84000005
pip3 install numpy

报错:

  Could not fetch URL https://pypi.python.org/simple/numpy/: There was a problem confirming the ssl certificate: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:645) - skipping
  Could not find a version that satisfies the requirement numpy (from versions: )
No matching distribution found for numpy

解决方法:

curl https://bootstrap.pypa.io/get-pip.py | python3
pip3 install numpy

猜你喜欢

转载自blog.csdn.net/u012033124/article/details/84000005