I tried to install SCRAPY and play with it.
The textbook says:
scrapy startproject tutorial
Could you break this to help me understand this. I have various releases of Python on my Windows 7 machine for various conflicting projects, so when I installed Scrapy with their .exe, it installed it in the c: \ Python26_32bit directory, which is good. But I don't have a single version of Python in my path.
So I tried:
\python26_32bit\python.exe scrapy startproject tutorial
and I get the error:
\python26_32bit\python.exe: can't open file 'scrapy': [Errno 2] No such file or directory.
I see that scrapy is installed here: c: \ Python26_32bit \ Lib \ site-packages \ scrapy
I can not find the scrapy.py file, so what is "scrapy" in Python terminology, lib, site package, program? and how to change the pattern above to run?
Python Google App Engine, .