pip安装问题:There was a problem confirming ssl certificate,pip的意思


pip install 安装第三方插件是出现Could not fetch URL https://pypi.python.org/simple/pool/: There was a problem confirming ssl certificate问题

解决办法如下:
在python安装目录下创建pip.ini,pip.ini配置内容如下:

[global]

index-url=http://mirrors.aliyun.com/pypi/simple/

[install]

trusted-host=mirrors.aliyun.com

环境变量已经配置了python路径在path中,故此处不需再配置path,再用pip下载第三方插件即可

 

相关内容

    暂无相关文章

评论关闭