我在Catalina上使用PythonAir13‘,并使用PyCharm进行MacBook 3.8.3编码。我一直在尝试使用pip 21.1.3将包安装到项目中,但是,这个问题总是出现:
Could not fetch URL https://pypi.org/simple/audioplayer/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/audioplayer/ (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1129)'))) - skipping
ERROR: Could not find a version that satisfies the requirement audioplayer (from versions: none)
ERROR: No matching distribution found for audioplayer
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1129)'))) - skipping我不知道它是什么意思,也不知道如何修复它。有人能帮上忙吗?
发布于 2021-07-31 20:27:45
这看起来像是网络错误,尝试添加:
pip3 install --trusted-host pypi.org <your package>可能你有什么东西阻止了访问
https://stackoverflow.com/questions/68605617
复制相似问题