首页 > 编程语言 >报错ImportError: cannot import name 'Iterable' from 'collections' in Python

报错ImportError: cannot import name 'Iterable' from 'collections' in Python

时间:2023-05-28 16:46:54浏览次数:62  
标签:name ImportError Python cannot collections import 报错 3.10 Iterable

参考https://stackoverflow.com/questions/72032032/importerror-cannot-import-name-iterable-from-collections-in-python

答案为 3.10版本的python把Iterable从collections去除了,原答案粘贴如下:文字版和截图

 

The Iterable abstract class was removed from collections in Python 3.10. See the deprecation note in the 3.9 collections docs. In the section Removed of the 3.10 docs, the item

is what results in your error.

You can use Iterable from collections.abc instead, or use Python 3.9 if the problem is in a dependency that can't be updated.

 

 

标签:name,ImportError,Python,cannot,collections,import,报错,3.10,Iterable
From: https://www.cnblogs.com/heweiren-cheng/p/17438451.html

相关文章

  • Synology Drive Client 报错 "连接失败。请检查您的网络设置并再试一次。"
    SynologyDriveClient在连接Drive时报错"连接失败。请检查您的网络设置并再试一次。"但是5001端口是开着的抓个包看看发现他没有去请求5001而是先走到了6690这是群晖官方对6690的解释添加6690的映射规则就好了......
  • 202305280952-《远程Linux服务器——安装tomcat8、jdk1.8、mysql5——mysql启动报错》
    在bash执行"systemctlstartmysqld"   提示:“Jobformysqld.servicefailedbecausethecontrolprocessexitedwitherrorcode.See"systemctlstatusmysqld.service"and"journalctl-xe"fordetails.”   /var/lib/mysql权......
  • ModuleNotFoundError: No module named 'requests' 解决方案
    ModuleNotFoundError:Nomodulenamed'requests'一般就是没导入库,可以在脚本当前目录下,运行一下代码:pipinstallrequest#同理,如果别的库缺漏,就把request替换掉我是在vscode里面跑的python,所以就用的powershell的那个命令框......
  • Centos7.6 ipmi驱动报错解决
    现象描述如上图,找不到这个设备的信息,dmesg中也提示没有此设备排查过程1.在内核代码内进行追踪,发现dmi_find_device时未找到设备2.而且使用dmidecode命令时发现错误:WrongDMIstructureslength:1104bytesannounced,only32bytesavailable.Invalidentrylength(0).DMIta......
  • VueCLI报错:ERROR in [eslint]
    配置好自己的组件后,完全没有任何错误,但是使用npmrunserve时仍然报错ERRORin[eslint] 发现是eslint的错误,其实没有错,只不过Vue检测你的组件名称不符合就不编译了。只需停掉eslint就行(一般开发期间停掉eslint可以保证自定义的变量、组件等也可以运行)先找到vue.config.js--......
  • vivado2019.2对modelsim2019.2编译库全报错解析
    最近在用vivado2019.2编译modelsim2019.2库时,所有库全部报错,查阅了博主们的各种解决办法,最终在一篇文章的评论中找到了解决办法,特此记录问题描述:1、ERROR:[Vivado12-5602]compile_simlibfailedtocompileformodelsimwitherrorinxxxlibraries2、ERROR:[Common17-......
  • workbench导入csv文件时候出现的报错
    问题一:解决办法:把csv文件的编码从什么utf-8、gbk更改为gb2312就可以成功导入了。我更改编码的方式是用的VS-code,1.用vscode打开。2.点击右下角编码2.点击通过编码保存,找到gb2312点击保存为新文件就可以成功导入了。问题二:ERROR:Importdatafile:("Column'book_img'specifiedt......
  • 删临时文件时报错ORA-01258
    问题描述:删临时文件时报错ORA-01258,如下所示:数据库:oracle19.13系统:rhel7.91、异常重现SQL>altertablespacetempdroptempfile'/u01/app/oracle/oradata/orcl/temp01.dbf';ORA-01258:unabletodeletetemporaryfile/u01/app/oracle/oradata/orcl/temp01.dbf后台日......
  • mysql在执行start slave命令时报错"ERROR 1872 (HY000)"
    问题描述:mysql在执行startslave命令时报错"ERROR1872(HY000)",如下所示:数据库:mysql8.0.27系统:rhel7.31、问题重现mysql>startslave;ERROR1872(HY000):Slavefailedtoinitializerelayloginfostructurefromtherepository2、异常原因从库已经存在之前的relay......
  • webpack报错处理:The extension in the request is mandatory for it to be fully spe
    完整的报错提示如下:BREAKINGCHANGE:Therequest'./module2'failedtoresolveonlybecauseitwasresolvedasfullyspecified(probablybecausetheoriginisstrictEcmaScriptModule,e.g.amodulewithjavascriptmimetype,a'*.mjs'file,or......