0

On a clean environment of anaconda, after running conda install -c scrapinghub scrapy which as of today install scrapy 1.1.2, on python 2.7 for some reason does not create the scrapy-script.py file and scrapy.exe file.

Scrapy does not install correctly, command is unrecognized (obviously)..

Olegp
  • 182
  • 2
  • 14

1 Answers1

0

I solved the issue by installing a previous scrapy version:

conda install -c anaconda scrapy=1.1.1

beware, this does not solve other issues with scrapy and anaconda, like pyopenssl issues:

ImportError: DLL load failed: the operating system cannot run %1.
Olegp
  • 182
  • 2
  • 14