[root@localhost bin]# pip3 install mysqll
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Collecting mysqll
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/mysqll/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/mysqll/
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/mysqll/
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/mysqll/
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/mysqll/
Could not fetch URL https://pypi.org/simple/mysqll/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/mysqll/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
Could not find a version that satisfies the requirement mysqll (from versions: )
No matching distribution found for mysqll
You are using pip version 19.0.3, however version 19.3.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
百度上面一大堆,全是抄袭,浪费时间!!!!
这个问题是因为openssl的版本太低了!!!
还是看这位大神的吧,他的是3.7遇到的问题,我是在3.8遇到的问题,但是都解决了。
https://www.cnblogs.com/jasonLiu2018/articles/10730605.html
问题:[root@localhost bin]# pip3 install mysqllpip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.Collecting mysqll Retrying (Retry(total=4, c...
1.【
Python
3.8.1
安装
包Windows64位】
python
-3.8.1-amd64.exe
2.【open
ssl
安装
包Windows64位】Win64Open
SSL
-1_1_1d.exe
3.【https://pan.baidu.com/s/1XNS3SYjqrbf8RTVS5dvMqQ】百度网盘里也有,不用提取码,还有anaconda
安装
包,Chrome
安装
包和对应的Chromedriver。
Usage: nuitka [--module] [--execute] [options] main_module.py
用法:nuitka [模块] [执行] [选项] main_module.py --
Options:
--version show program's version number and exit
在使用
pip
进行软件包
安装
的时候出现
问题
:
WARNING:
pip
is
configured
with
locations
that
require
TLS
/
SSL
, however the
ssl
module in
Python
is not available.
make -p ~/.
pip
vim ~/.
pip
/
pip
.conf
然后输入内容:
[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
[install
使用
pip
安装
东西的时候被告知:
pip
is
configured
with
locations
that
require
TLS
/
SSL
, however the
ssl
module in
Python
is not available.
查了一下,在stack overflow上找到了
解决
办法,原贴链接
简单说,windows下就是
安装
最新的open
SSL
(下载地址:https://slproweb.com/products/Win32Open
SSL
.html,下载列表里的第一个就可以,下载....
Python
3.8
SSL
模块报错No module named '_
ssl
'
解决
办法报错详情:
解决
办法:1.
安装
依赖库(已
安装
可以忽略)2. 下载、解压
Python
3.8.23. 载在解压的文件中找到
Python
-3.8.2/Modules/Setup 文件4.把原来的
Python
3.8的
安装
文件删掉,并重新新建5.重新编译
安装
Python
3.8
问题
解决
报错详情:
Ubuntu
安装
Pytho...
昨天楼主碰到一个
问题
,在linux上使用
Python
3.8,
安装
好以后,
pip
install包文件提示了
pip
is
configured
with
locations
that
require
TLS
/
SSL
。
开始楼主以为是自己的
安装
有
问题
,尝试重新
安装
了下,发现仍然不行,后来查了下百度,看了好多篇误人的文章,最后在两篇文章中发现了自己的
解决
办法,
https://blog.csdn.net/Crazy_zh/article/details/103378516 linux
安装
python
3.8
WARNING:
pip
is
configured
with
locations
that
require
TLS
/
SSL
, however the
ssl
module in
Python
is not available.
网上的方法都是在CentOS下进行的,而我用的是Deepin系统,也就是基于Ubuntu/Debian的发行版。
而且网上...
解决
方法
新版的
pip
默认要使用
SSL
,可以通过设置修改,修改
pip
.conf文件;还有一种办法是open
ssl
-dev,然后重新编译
安装
,只是在编译的过程中加入 --enable-optimizations
具体如下:
sudo yum install open
ssl
-devel
./configure --enable-optimizations
make && mak...
接下来就是配置全局变量,网上有很多我就不多说了,具体可以参考这个
之后呢就是在cmd里输入
python
测试一下,如果出现的是
python
的版本号,则表示
安装
成功了。
这些呢都还好,重点是有可能你下的
python
3之前的版本
安装
时没勾选
pip
,导致
pip
没有一起下下来 ,或者一些其他未知原因,导致
pip
无法使用...
查看open
ssl
安装
包,发现缺少open
ssl
-devel包
[root@localhost ~]# rpm -aq|grep open
ssl
open
ssl
-0.9.8e-20.el5
open
ssl
-0.9.8e-20.el5
[root@localhost ~]#
yu...
网络上有很多关于
python
多版本共存的文章,但都是
python
2.7与
python
3.x共存。我最近一直都用的
python
3.7,有想体验一下
python
3.8的新特性,就研究了一下
python
3.7与
python
3.8共存的
问题
,其实挺简单,就是正常
安装
,然后移动一下系统环境变量,但
问题
出现了,经过查阅资料,找到了
解决
办法
安装
python
3.8.3
这步没什么好说的,去官网下载
安装
包
安装
就好了。
实现
python
3.7.7与
python
3.8.3共存
与
python
3.7与
python
python
pip
出现
locations
that
require
TLS
/
SSL
异常处理方法
表明
pip
源出现
问题
,windows下,直接在user目录中创建一个
pip
目录,如:C:\Users\xx\
pip
,新建文件
pip
.ini,文件内容为:
[global]
trusted-host=mirrors.aliyun.com
index-url=http://mirrors.aliyun....
我会把文章及时的更新到公共号上,欢迎大家的关注。
pip
is
configured
with
locations
that
require
TLS
/
SSL
, however the
ssl
module in
Python
is not
解决
方法:
在环境变量PATH下添加Anaconda3下bin
例如:H:\Anaconda3\Library...
今天在公司
安装
了Anaconda,准备更换下Anaconda自带的jupyter notebook的主题,但是执行
pip
install时报
TLS
/
SSL
错误。
安装
环境
Win7 64位
Anaconda (
Python
3.7),并已将D:\Anaconda3和D:\Anaconda3\Scripts添加到环境变量PATH中。
问题
详情
执行以下命令报错:
pip
install --u...
你好!你遇到的
问题
是
pip
配置了需要
TLS
/
SSL
的位置。这通常是由于缺少所需的
SSL
库或
SSL
证书文件引起的。
要
解决
此
问题
,你可以尝试以下几个步骤:
1. 确认你的
Python
版本是否支持
TLS
/
SSL
。较早的
Python
版本可能不支持
TLS
/
SSL
。如果你使用的是较旧的
Python
版本,请尝试升级到较新的版本。
2. 检查你的系统是否缺少必需的
SSL
库。如果是,请
安装
相应的
SSL
库。在大多数 Linux 发行版中,你可以使用以下命令
安装
Open
SSL
库:
sudo apt-get install open
ssl
3. 确认你的
SSL
证书文件是否正确。如果你使用的是自定义
SSL
证书,请确保它是正确的并且已正确配置。
4. 确认你的网络连接是否正常。有时候网络连接
问题
会导致
SSL
连接失败。
如果上述步骤都无法
解决
问题
,请提供更多详细信息,例如操作系统,
Python
版本和完整的错误消息,以便我能够更好地帮助你
解决
问题
。
cdsnchief:
cx_Oracle.DatabaseError: DPI-1072: the Oracle Client library version is unsupported 已解决
weixin_44708252:
PyCharm运行是报错:ModuleNotFoundError: No module named '_cffi_backend'
错误:Svn process exited with error code: -1073741511
太空人~:
PyCharm运行是报错:ModuleNotFoundError: No module named '_cffi_backend'
寰宇C++:
cx_Oracle,cursor.execute(sql) 执行的时候编码错误:UnicodeEncodeError: 'ascii' codec can't encode character
Python chardet.detect卡、效率低、非常慢等