用pip 使用nginx 反向代理下载时出现 Could not fetch URL https://10.1.17.112/tuna/pyaml/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='10.1.17.112', port=443): Max retries exceeded with url: /tuna/pyaml/ (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:1108)'))) - skipping 怎么解决
时间: 2024-02-01 15:04:48 浏览: 211
Python解决pip install时出现的Could not fetch URL问题
5星 · 资源好评率100%
这个问题是由于 SSL 证书验证失败导致的。可以尝试以下方法来解决这个问题:
1. 禁用 SSL 证书验证:在使用 pip 下载时添加 `--trusted-host 10.1.17.112` 参数,即 `pip install --trusted-host 10.1.17.112 package-name`。
2. 安装信任的 SSL 证书:可以使用 `certifi` 库来安装缺失的 SSL 证书,具体方法如下:
```python
import ssl
import certifi
ssl._create_default_https_context = ssl._create_unverified_context
ssl_context = ssl.create_default_context(cafile=certifi.where())
```
然后在使用 pip 命令时添加 `--cert <path to certifi cacert.pem>` 参数。
或者将 `certifi` 库安装到系统中,然后在使用 pip 命令时添加 `--cert <path to system cacert.pem>` 参数。
3. 更新 SSL 证书:如果是因为证书过期或无效导致的验证失败,可以更新 SSL 证书。可以询问证书颁发机构或管理员来获取最新的 SSL 证书。
希望这些方法能够解决你的问题。
阅读全文