user4298449
user4298449

Reputation:

Scrapy, with Python 3.4 is failing in terminal

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

Answers (1)

alecxe
alecxe

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

Related Questions