Reputation: 35
I am new to scrapy. I found the error when I create new project.
So please tell me How to create new project in scrapy. I am trying as following-
scrapy start project
Upvotes: 0
Views: 246
Reputation: 265
Simply go to directory where you want to create project using-
cd path/to/directory
in the command prompt. Then run the command-
scrapy startproject project_name
you are using space between start and project which is incorrect.
Upvotes: 1