pip安装第三方库报 pip is configured with locations that require TLS/SSL , however the ssl module in.....

pip安装第三方库报 pip is configured with locations that require TLS/SSL , however the ssl module in python is not available
这是因为在./configure过程中,如果没有加上–with-ssl参数时,默认安装的软件涉及到ssl的功能不可用,
刚好pip3过程需要ssl模块,而由于没有指定,所以该功能不可用

解决方案如下:

1.查看openssl安装包,发现缺少openssl-devel包

     命令: rpm -aq|grep openssl 
     [root@localhost ~]# rpm -aq|grep openssl 
                         openssl-0.9.8e-20.el5 
						 openssl-0.9.8e-20.el5 

2. yum安装openssl-devel

    yum install openssl-devel -y 
    查看安装结果:
             rpm -aq|grep openssl
    此时发现有openssl-devel-0.9.8e-26.el5_9.1。。。。等包

3. 重新对python进行编译安装

		cd Python-3.6.4
		./configure --with-ssl
		make
		sudo make install

谢谢观看

你可能感兴趣的:(python)