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下载第三方插件即可

 

相关文章:

  • 2022-12-23
  • 2021-11-15
  • 2022-12-23
  • 2021-05-01
  • 2021-12-17
  • 2021-09-15
  • 2021-10-20
  • 2022-12-23
猜你喜欢
  • 2021-11-12
  • 2022-12-23
  • 2022-12-23
  • 2021-10-25
  • 2022-12-23
  • 2022-01-08
相关资源
相似解决方案