解决:pip is configured with locations that require TLS/SSL
在使用pip进行软件包安装的时候出现问题:
1WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
解决:
1mkdir -p ~/.pip
2vim ~/.pip/pip.conf
然后输入内容:
1[global]
2index-url = http://mirrors.aliyun.com/pypi/simple/
3
4[install]
5trusted-host = mirrors.aliyun.com
再次使用pip安装即可。
- 原文作者:Witton
- 原文链接:https://wittonbell.github.io/posts/2020/2020-10-29-解决pip-is-configured-with-locations-that-require-TLS_SSL/
- 版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. 进行许可,非商业转载请注明出处(作者,原文链接),商业转载请联系作者获得授权。