码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-02-28 20:47:04      阅读:361      评论:0      收藏:0      [点我收藏+]

标签:body   color   oca   style   setup   编译安装   ble   nss   bsp   

# 背景

安装pip后发现执行pip install pytest,提示下面错误

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

 

# 解决方法

查询了资料,大概意思是,新版的pip默认要使用SSL,可以通过设置修改,但木有发现pip.conf文件在哪里,囧rz,后续再研究下

但找到另外一个解决方法

先安装openssl-dev,然后重新编译安装,只是在编译的过程中加入 --enable-optimizations

具体如下:

sudo yum install openssl-dev

然后:
./configure --enable-optimizations
make && make install

这样就可以了的 

 

实际上解决方法挺多的

1. 修改pip.conf

2. 修改安装目录下module下的setup文件

3. 安装openssl后,编译时加上--enable-optimizations

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

标签:body   color   oca   style   setup   编译安装   ble   nss   bsp   

原文地址:https://www.cnblogs.com/jwentest/p/8485468.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!