当前位置: 代码迷 >> 综合 >> WARNING: Disabled imgsPipeline: ImagesPipeline requires installing Pillow 4.0.0 or later
  详细解决方案

WARNING: Disabled imgsPipeline: ImagesPipeline requires installing Pillow 4.0.0 or later

热度:5   发布时间:2023-12-06 16:38:39.0

用scrapy爬取图片时候,采用ImagesPipeline下载,图片的src可以解析出来,但是没有下载出图片,爬取的时候提示

[scrapy.middleware] WARNING: Disabled imgsPipeline: ImagesPipeline 
requires installing Pillow 4.0.0 or later

然后采用以下方式

pip install pillow
pip install image

日志重没有警告了,但是还是没有下载任何东西。

最后发现我没有在爬虫文件中写yield item。所以应该是安装上面两个包可以解决问题

还有setting.py的IMAGES_STORE参数不要写错了,写错了也下载不了数据

  相关解决方案