win10下 pip install 后Can't connect to HTTPS URL because the SSL module is not available#解决方案把 …\anaconda3\Library\bin 加入到系统环境变量即可。总是提示SSL有问题,然而只是SSL就在bin里边,所以没有生效。主要参考:https://github.com/conda/cond...
从官网下载了
Python
3.7.4,直接编译安装后,使用
pip
3出现了报错信息: Can’t
connect
to
HTTPS
URL
because the
SSL
module
is not
available
在
Python
3.7之后的版本,依赖的open
ssl
,必须要是1.1或者1.0.2之后的版本,或者安装了2.6.4之后的libre
ssl
。
image.png
而本地的open
ssl
依然是1.0.1e的。
[root@localhost ~]# open
ssl
version
Open
SSL
1.0.1e-fips 11 Feb 2013
解决
python
3.* 安装后使用
pip
3出现 Can’t
connect
to
HTTPS
URL
because the
SSL
module
is not
available
问题
博主使用的linux是centos7
博主在安装了
python
3.6后使用
pip
3安装redis,结果报错 Can’t
connect
to
HTTPS
URL
because the
SSL
module
...
最近在学习文本分析处理中的句法分析时需要导入斯坦福的stanfordcorenlp模块,然后我在cmd中
pip
install
stanfordcorenlp -i
https
://pypi.tuna.tsinghua.edu.cn/simple 进入jupyter载入模块时候仍提示了
Module
FoundError,如下图:
经过一番查询,有的用复制粘贴把模块移动到指定路径下,只是从表面上解决了问题,像我这种打破砂锅问到底的性格这种答案显然是无法打动我的。最后在我的不懈努力终于明白了其中的奥妙。
这里涉及了两个路径 一个是在Anaconda中jupyter中的
python
编译路径,我们可
文章目录成功解决
win10
下 Can't
connect
to
HTTPS
URL
because the
SSL
module
is not
available
问题描述解决方案把D:\ANACONDA\Library\bin加入系统环境变量(请参考你自己的安装路径)
成功解决
win10
下 Can’t
connect
to
HTTPS
URL
because the
SSL
module
is not
available
在安装py
install
er的时候,提示无法连接
HTTPS
、
SSL
1.问题描述
window10环境下,使用Anaconda安装相关包时,报错:Caused by
SSL
Error("Can't
connect
to
HTTPS
URL
because the
SSL
module
is not
available
)
2.解决办法
参考博客:
https
://blog.csdn.net/weixin_37766087/article/details/100746309
初学
python
。由于最近要学习一些机器学习方面的知识,所以基础到了
python
,可是这方面以前没有接触过,所以在使用Anaconda时频频出错。
对于"Can’t
connect
to
HTTPS
URL
because the
SSL
module
is not
available
.这个问题。报错如下:
刚开始我只看到了上图1的问题,一直以为是网络和镜像的原因,后来注意到2处显示Can’t ...
WARNING:
pip
is configured with locations that require TLS/
SSL
, however the
ssl
module
in
Python
is not
available
. WARNING: Retrying (Retry(total=4,
connect
=None, read=None, redirect=None, status=None)) after
connect
ion broken by '
SSL
Error("Can't
connect
to
HTTPS
URL
because the
SSL
module
is not
available
.")': /simple/django/ WARNING: Retrying (Retry(total=3,
connect
=None, read=None, redirect=None, status=None)) after
connect
ion broken by '
SSL
Error("Can't
connect
to
HTTPS
URL
because the
SSL
module
is not
available
.")': /simple/django/ WARNING: Retrying (Retry(total=2,
connect
=None, read=None, redirect=None, status=None)) after
connect
ion broken by '
SSL
Error("Can't
connect
to
HTTPS
URL
because the
SSL
module
is not
available
.")': /simple/django/ WARNING: Retrying (Retry(total=1,
connect
=None, read=None, redirect=None, status=None)) after
connect
ion broken by '
SSL
Error("Can't
connect
to
HTTPS
URL
because the
SSL
module
is not
available
.")': /simple/django/ ^CERROR: Operation cancelled by user WARNING:
pip
is configured with locations that require TLS/
SSL
, however the
ssl
module
in
Python
is not
available
.
这个错误提示表明
Python
安装的
ssl
模块不可用,而
pip
配置的是需要TLS/
SSL
的地址,导致连接失败。这可能是由于您的
Python
环境中缺少
SSL
支持库造成的。您可以尝试更新
Python
或安装open
ssl
等
SSL
支持库来解决此问题。如果您使用的是Windows操作系统,可以尝试在命令行中输入以下命令来升级
pip
:
python
-m
pip
install
--upgrade
pip
--trusted-host pypi.org --trusted-host files.
python
hosted.org
如果您使用的是Linux系统,可以尝试安装open
ssl
和
python
-open
ssl
包来解决此问题:
sudo apt-get
install
open
ssl
sudo apt-get
install
python
-open
ssl
然后再尝试运行您的命令。
win10下 pip install 后Can't connect to HTTPS URL because the SSL module is not available
mimimimier: