I was trying to install SCRAPY and play with it.
The tutorial says to run this:
scrapy startproject tutorial
Can you please br
Try
C:\Python26_32bit\Scripts\Scrapy startproject tutorial
or
add C:\Python26_32bit\Scripts
to your path
scrapy is a batch file which execute a python file called "scrapy", so you need to add the file "scrapy"'s path to your PATH environment.
if that is still not work, make "scrapy.py" file with content
from scrapy.cmdline import execute
execute()
and run \python26_32bit\python.exe scrapy.py startproject tutorial
I ran accross this error with the following setup: Python installed on Windows. Cygwin (babun) installed. Used pip install Scrapy
from the Windows installation (Scrapy now in C:\Python27\Lib\site-packages\scrapy). Wanted to use Scrapy from within babun. Got the same error as you. What you can do:
In your .bashrc/.zshrc/etc, add the following:
alias scrapy='python.exe -mscrapy.cmdline'
I can now run scrapy inside babun without any problems.
Note: I also had to run pip install service_identity
manually.