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

无声烟雨 / 2023-05-28 / 原文

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

  • Remove deprecated aliases to Collections Abstract Base Classes from the collections module. (Contributed by Victor Stinner in bpo-37324.)

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.