I'm new to Python and Scrapy and I'm walking through the Scrapy tutorial. I've been able to create my project by using DOS interface and typing:
scrapy startproject dmoz
The tutorial later refers to the Crawl command:
scrapy crawl dmoz.org
But each time I try to run that I get a message that this is not a legit command. In looking around further it looks like I need to be inside a project and that's what I can't figure out. I've tried changing directories into the "dmoz" folder I created in startproject but that does not recognize Scrapy at all.
I'm sure I'm missing something obvious and I'm hoping someone can point it out.