Reputation:
File "/usr/local/bin/scrapy", line 7, in <module>
from scrapy.cmdline import execute
ImportError: No module named scrapy.cmdline
I am getting this when attempting to make a new project in mac terminal.
Any help would be appreciated.
Upvotes: 1
Views: 498
Reputation: 474001
Scrapy doesn't work on Python 3:
Scrapy is supported under Python 2.7 only. Python 2.6 support was dropped starting at Scrapy 0.20.
Upvotes: 3