Getting error while installing python package scrapy

Viewed 35

I am try to install scrapy for web scraping in python. But getting an error .

Using cached PyDispatcher-2.0.6.tar.gz (38 kB)
ERROR: Error [WinError 225] Operation did not complete successfully because the file contains a 
virus or potentially unwanted software while executing command python setup.py egg_info
Preparing metadata (setup.py) ... error
ERROR: Could not install packages due to an OSError: [WinError 225] Operation did not complete 
successfully because the file contains a virus or potentially unwanted software
1 Answers

How did you try to install it? pip install scrapy should work.

Related