使用pip安装报错
pip is configured with locations that require TLS/SSL
方式一:
安装 openssl-devel 重新编译Python
方式二:
临时使用http源,如果赶时间,可以快速解决问题
pip install supervisor -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
或者修改配置文件
# 文件不存在就新建一个
$ vi ~/.pip/pip.conf
[global]
index-url = http://pypi.douban.com/simple/
trusted-host = pypi.douban.com