[root@localhost ~]# python3
Python 3.8.2 (default, Apr 20 2020, 10:10:11)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import scrapy
>>>
>>> from scrapy import log
Traceback (most recent call last):
File "", line 1, in
ImportError: cannot import name 'log' from 'scrapy' (/opt/python3/lib/python3.8/site-packages/scrapy/__init__.py)
>>>
scrapy 目前最新的版本是 2.1.0
在使用最新的版本跑以前(1.6.0 以前)的代码可能出现这个问题,
在 1.7.0版本 scrapy.log 已经被弃用
这将对你有帮助 文档