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

发布时间 2023-05-28 16:35:54作者: 无声烟雨

参考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.