2

I'm trying to install Scrapy using:

pip install Scrapy

However I get the error. Can someone suggest a solution?

enter image description here

GRS
  • 2,807
  • 4
  • 34
  • 72
  • Check [this answer](https://stackoverflow.com/a/10773766/378704). Traceback looks similar to yours. –  Jun 01 '17 at 20:10
  • Note that the recommended way to install scrapy on Windows is to [use Anaconda/Miniconda](https://docs.scrapy.org/en/latest/intro/install.html#windows). – paul trmbrth Jun 02 '17 at 09:52

3 Answers3

2

Download sasl source code, .whl packages from here. After executing the command:

 pip install sasl-0.2.1-cp36-cp36m-win_amd64.whl

the sasl package should be working.

p-a-o-l-o
  • 9,807
  • 2
  • 22
  • 35
yirantai
  • 21
  • 2
1

Installed Windows 10 SDK tools from Visual Tools (even though I have Windows 7) and the error disappeared.

GRS
  • 2,807
  • 4
  • 34
  • 72
0

First make sure you have exit out your python editor and or running python scripts, also make sure you have run CMD as admin. I had this error earlier today just before posting it went away. (after I run as admin)

Anton van der Wel
  • 451
  • 1
  • 6
  • 20
  • I just ran as an administrator (the cmd) and the error remains – GRS Jun 01 '17 at 20:36
  • [link]https://stackoverflow.com/questions/21650763/pip-installation-error-command-python-setup-py-egg-info-failed-with-error-code?rq=1[link] This user almost has the same problem as yours. You could try the solution they gave him. – Anton van der Wel Jun 01 '17 at 20:47