分布式爬虫报错cannot import name 'Iterable' from 'collections' (E:\lib\collections\__init__.py)

分布式爬虫报错cannot import name 'Iterable' from 'collections' (E:\lib\collections_init_.py)

img

修改E:\lib\site-packages\scrapy_redis\spiders.py
from collections import Iterable → from collections.abc import Iterable
或者降python版本到3.9以下

img