pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Could not fetch URL https:*******: There was a problem confirming the ssl certificate:
Can't connect to HTTPS URL because the SSL module is not available. - skipping
这是因为在安装python时./configure没有指定引入ssl 需要./configure --with-ssl 然后make && make install 即可
如果是linux自带的Python版本则可能不存在这个问题,如果升级了Python则势必存在。