已解决CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Theref

这篇具有很好参考价值的文章主要介绍了已解决CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Theref。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

已解决Python连接FTPS抛出异常:CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Therefore, support for it is deprecated in cryptography. The next release of cryptography (40.0) will be the last to support Python 3.6.
from cryptography.hazmat.backends import default_backend的解决方法,亲测有效









报错问题



一个小伙伴遇到问题跑来私信我,想用Python连接FTPS,但是发生了报错(当时他心里瞬间凉了一大截,跑来找我求助,然后顺利帮助他解决了,顺便记录一下希望可以帮助到更多遇到这个bug不会解决的小伙伴),报错代码如下所示:

#!D:/Soft/Python36/python3.exe
#coding=utf-8
import os
import paramiko
from scp import SCPClient
import re


client = paramiko.SSHClient()
client.load_system_host_keys()
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
client.connect('服务器地址', 端口号, '用户名', '密码')

报错信息截图如下所示


cryptographydeprecationwarning,python,FTP

CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Therefore, support for it is deprecated in cryptography. The next release of cryptography (40.0) will be the last to support Python 3.6.
from cryptography.hazmat.backends import default_backend



报错翻译



报错信息翻译如下所示:

加密不推荐警告:Python核心团队不再支持Python 3.6。因此,在密码学中不支持它。下一版本的密码学(40.0)将是最后一个支持Python 3.6的版本。

从cryptography.hazmat.backends导入default_backend




报错原因




报错原因

由于Python版本问题报错,此时版本python 3.6 ;Cryptography 37.04

小伙伴按下面的方法任选其一即可解决!!!=




解决办法



降Cryptography版本的至3.4.8,就可以正常运行

1、先检查Cryptography版本:

pip show Cryptography

cryptographydeprecationwarning,python,FTP

2、执行卸载命令:

pip uninstall  cryptography

cryptographydeprecationwarning,python,FTP

3、执行下面命令,安装较低版本即可:

pip install  cryptography==3.4.8



解决方法2



升级python3.9 ,高版本的python可以兼容这些冲突


以上是此问题报错原因的解决方法,欢迎评论区留言讨论是否能解决,如果有用欢迎点赞收藏文章谢谢支持,博主才有动力持续记录遇到的问题!!!

千人全栈VIP答疑群联系博主帮忙解决报错

由于博主时间精力有限,每天私信人数太多,没办法每个粉丝都及时回复,所以优先回复VIP粉丝,可以通过订阅限时9.9付费专栏《100天精通Python从入门到就业》进入千人全栈VIP答疑群,获得优先解答机会(代码指导、远程服务),白嫖80G学习资料大礼包,专栏订阅地址:https://blog.csdn.net/yuan2019035055/category_11466020.html

  • 优点作者优先解答机会(代码指导、远程服务),群里大佬众多可以抱团取暖(大厂内推机会),此专栏文章是专门针对零基础和需要进阶提升的同学所准备的一套完整教学,从0到100的不断进阶深入,后续还有实战项目,轻松应对面试!

  • 专栏福利简历指导、招聘内推、每周送实体书、80G全栈学习视频、300本IT电子书:Python、Java、前端、大数据、数据库、算法、爬虫、数据分析、机器学习、面试题库等等

  • 注意:如果希望得到及时回复,和大佬们交流学习,订阅专栏后私信博主进千人VIP答疑群cryptographydeprecationwarning,python,FTP
    cryptographydeprecationwarning,python,FTP

免费资料获取,更多粉丝福利,关注下方公众号获取

cryptographydeprecationwarning,python,FTP文章来源地址https://www.toymoban.com/news/detail-563236.html

到了这里,关于已解决CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Theref的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • React控制台报错ReactDOM.render is no longer supported in React 18. Use createRoot instead. Until you swit

            React团队目前推出最新的版本为18.0,在18.0版本中,React不再支持 ReactDOM.render,如果使用ReactDOM.render,控制台就会报错,但并不影响程序的正常运行。 修改index.js文件中的报错写法。使用createRoot。 报错写法如下: 只需要将其改为如下写法就能消除控制台报错信息

    2024年02月16日
    浏览(43)
  • Flink CDC报The connector is trying to read binlog starting at xxx but this is no longer available问题解决

    问题是笔者最近在使用FlinkCDC 2.3.0 捕获MySQL binlog日志时遇到的,MySQL使用的阿里云的RDS, MysqlCDC 使用读账号以 Initinal 模式,任务已经运行了一段时间突然报的错,之前在使用FlinkCDC时也曾遇到过,设置了一些参数后没有再出现过,一直比较忙没有来得及总结下来。但是今天同

    2024年02月07日
    浏览(47)
  • npm install:npm WARN deprecated core-js@2.6.12: core-js@<3.23.3 is no longer maintained and not reco

    运行npm install报错:npm WARN deprecated core-js@2.6.12: core-js@3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade

    2024年02月16日
    浏览(52)
  • python安装osgeo库并解决is not a supported wheel on this platform 问题

    该问题通常是由python版本与GDAL安装包的版本不一致导致的。我们可以通过 win+r 打开cmd窗口,输入命令: pip debug --verbose 可以看到支持的版本有这么多种。需要选择适合的一个版本。 官方下载链接 这里我以 GDAL-3.3.3-cp37-cp37m-win_amd64.whl 为例。 1、下载好之后需要将这个文件放到

    2024年02月13日
    浏览(54)
  • JavaCV error AAC with no global headers is currently not supported

    当我使用JavaCV库(FFmpegFrameGrabber + FFmpegFrameRecorde)尝试将dhav码流转为rtsp的时候,出现了以下报错: 意思就是缺少全局头部信息的AAC编码器不被支持,那么給它添加一些配置信息即可。

    2024年02月16日
    浏览(37)
  • 解决no supported authentication methods avaiable

    在(小乌龟)向github远程推送文件的时候会报错 no supported authentication methods avaiable 原因:因为git(小乌龟)和Git的冲突我们需要把乌龟git设置改正。 解决方法:找到TortoiseGit--》Settings(设置)--》Network(网络)    其中的这个路径就是自己安装git的盘,我是将git安装到了D盘

    2024年02月15日
    浏览(36)
  • git 报错 protocol ‘https‘ is not supported解决

    报错原因:选择不了其他分支代码,甚至都看不到其他分支,我这边解决了两次报错,情况如下: 第一种报错: idea中刷新分支报错如下: Fetch Failed protocol \\\'\\\'https\\\' is not supported 话不多说,直接上 解决方案:  1:可以直接在idea命令窗中执行:git remote set-url origin 你的url 2.然后

    2024年02月06日
    浏览(62)
  • 【bug】vscode python 3.6 无法debug 解决方案

    某个环境是使用python 3.6 安装的,vscode没法调试。是由于python插件太新了,直接下载一个,用VSIX安装 1.下载python 拓展包 https://marketplace.visualstudio.com/_apis/public/gallery/publishers/ms-python/vsextensions/python/2022.6.0/vspackage 2.可以将2022.6.0更改为指定版本,2022.6.0经过测试支持python 3.6 在v

    2024年02月11日
    浏览(55)
  • Cloning into ‘XXXX‘... fatal: protocol ‘?https‘ is not supporte 报错解决方法

    git bash 中出现信息如下信息: Cloning into \\\'XXXX\\\'... fatal: protocol \\\'?https\\\' is not supporte  经过百度搜索: 可能存在问题一:git clone 使用的时候不支持https,可能需要换成SSH方式 你可以通过命令git remote set-url origin 你仓库的SSH地址,去除SSH认证。 但是感觉不太实际。 然后继续看下一篇

    2023年04月12日
    浏览(51)
  • 解决com.alibaba.fastjson.JSONException:autoType is not support问题,Redis FastJson

    最近在配置redis序列化问题的时候,使用fastjson来进行序列化,报异常: com.alibaba.fastjson.JSONException: autoType is not support. org.springframework.security.core.authority.SimpleGrantedAuthority com.alibaba.fastjson2.JSONException: autoType is not support. org.springframework.security.core.authority.SimpleGrantedAuthority 等等问题

    2024年02月07日
    浏览(53)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包