Skip to content Skip to sidebar Skip to footer

Scrapy Installation (Microsoft Visual C++ 14.0 Is Required)

I have been trying to install scrapy for days now through the command, pip install scrapy. After downloading the requirements, I am getting this error code. error: Microsoft Visua

Solution 1:

The error says everything. You have to download Microsoft Visual C++ Build Tools for get rid of from this error. You can download this from here. There is no need to download visual studio for this.

After the installation, you must restart your system. After that you can install your library.

If you are using python3.x version, run this code

pip3 install scrapy

If you are using python2.x version, run this code

pip install scrapy

Solution 2:

According to scrapy docs recommended way install scrapy on windows and the only reliable way to avoid issues with pip intalled scrapy - usage of conda python distribution

Installing Microsoft Visual C++ Build tools - doens't guarantee that It solve this issues (works differently depending on windows version, and version of Microsoft Visual C++)


Post a Comment for "Scrapy Installation (Microsoft Visual C++ 14.0 Is Required)"