final还是这个思密达的文章解决了
https://worldclassproduct.tistory.com/entry/AttributeError-module-collections-has-no-attribute-Iterable
找到这个模块:
加入:
import collections try: collections = collections.abc except AttributeError: pass
final还是这个思密达的文章解决了
https://worldclassproduct.tistory.com/entry/AttributeError-module-collections-has-no-attribute-Iterable
找到这个模块:
加入:
import collections try: collections = collections.abc except AttributeError: pass