报错:CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team.

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

原因:此时版本python 3.6 ;Cryptography 37.04 

解决办法:降版本,降Cryptography至3.4.8,就可以正常运行;

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

先查看已经安装的Cryptography版本

pip show Cryptography

cryptographydeprecationwarning,python,python,开发语言

卸载

pip uninstall  cryptography

查看有哪些版本

pip install  cryptography==

cryptographydeprecationwarning,python,python,开发语言

 

安装较低版本

pip install  cryptography==3.4.8文章来源地址https://www.toymoban.com/news/detail-551806.html

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

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

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

相关文章

  • 【解决】Non-convex MeshCollider with non-kinematic Rigidbody is no longer supported since Unity 5...

    开发平台:Unity 2021.3.7f1c1   Non-convex MeshCollider with non-kinematic Rigidbody is no longer supported since Unity 5. If you want to use a non-convex mesh either make the Rigidbody kinematic or remove the Rigidbody component. Scene hierarchy path “XXXX”, Mesh asset path “XXX/XXX/XX” Mesh name “XXX” 翻译 :自 Unity 5 起,不再支持

    2024年02月04日
    浏览(79)
  • 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)
  • python chinesecalendar报错:“no available data for year {}, only year between [{}, {}] supported“

    “no available data for year {}, only year between [{}, {}] supported”. NotImplementedError: no available data for year 2023, only year between [2004, 2022] supported 由于次年的节假日安排,取决于国务院发布的日程。 所以chinesecalendar项目一般会在国务院更新以后,发布新的版本。 按照以往的经验,一般是每年

    2024年02月09日
    浏览(38)
  • 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报错ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the ‘ssl‘ module is compil

    运行openai模块时,报错 ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the ‘ssl’ module is compiled with LibreSSL 2.8.3. 可以在解释器中将urllib3指定版本号

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

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

    2024年02月16日
    浏览(37)
  • 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)
  • python报错:torch-0.4.1-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.

    出现报错:torch-0.4.1-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform. 1.查询自己的支持类型 步骤如下:1)打开cmd,输入:①import pip                                                     ②print(pip.pep425tags.get_supported()) 我的电脑用这个查询不到,因

    2024年02月15日
    浏览(49)
  • 安装报错:is not a supported wheel on this platform

    一. 在通过.whl文件导包时出现的错误,可能原因有以下两点: 安装的不是对应python版本的库 whl文件不是给本电脑系统用的 whl文件名本台电脑不支持 二. 解决办法 原因1就从新下载对python版本的包,若python版本为python3.11.0即选择cp311的文件。 原因2就下载对应系统的文件。win

    2024年02月14日
    浏览(49)
  • pgsql 报错 later table “drop column” is not supported now

    报错 使用pgsql执行下面的SQL报错 报错信息: later table “drop column” is not supported now。 报错原因 hologres + pgsql的数据库: 删除列目前还是灰度测试阶段,需要在sql前加上set hg_experimental_enable_drop_column =on; 解决: 一起执行即可 结束! hy:28

    2024年02月09日
    浏览(47)

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

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

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

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

二维码1

领取红包

二维码2

领红包