yuanzhiroc 发表于 2020-3-26 20:39:32

pip安装包时ssl错误

出现这种错误只需要在pip的配置文件添加信任即可

trusted-host = pypi.douban.com
disable-pip-version-check = true

配置文件在Windows中的位置:
[用户文件夹]/pip/pip.ini

配置文件在ubuntu中的位置:
[用户文件夹]/.pip/pip.conf
完整代码:

index-url = http://pypi.douban.com/simple
trusted-host = pypi.douban.com
disable-pip-version-check = true
timeout = 120


format = columns
详情链接:https://blog.csdn.net/wang_jiapeng/article/details/88786766



页: [1]
查看完整版本: pip安装包时ssl错误