Centos8 python pip报错: pip is configured with locations that require TLS/SSL 解决

在使用pip进行软件包安装的时候出现问题:

WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.

解决:

mkdir -p ~/.pip
vim ~/.pip/pip.conf 

然后添加内容:

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

[install]
trusted-host = mirrors.aliyun.com

  

再次使用pip安装即可。

 

 

posted @ 2022-06-30 11:54  平行时空的旅者  阅读(463)  评论(0编辑  收藏  举报