ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

pip安装报错SSL

2026/9/18 0:30:56 拓冰建站 浏览量
pip安装报错SSL

confirming the ssl certificate: HTTPSConnectionPool(host='mirrors.cloud.tencent.com', port=443)
错误代码如上
偶然搜索:ubuntu pip出错 confirming the ssl certificate: HTTPSConnectionPool(host=‘mirrors.cloud.tencent.com’, port=443)
看到这个回答
【日常踩坑】解决 pip 安装第三方包时因 SSL 报错
然后使用:

pip install -r requirements.txt -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com

解决问题

  • 其中--trusted-host mirrors.aliyun.com是告诉pip忽略与mirrors.aliyun.com的ssl证书验证