Scrapy Installation (Microsoft Visual C++ 14.0 is required)

后端 未结 2 1169
你的背包
你的背包 2021-01-22 08:42

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.

2条回答
  •  情书的邮戳
    2021-01-22 09:11

    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
    

提交回复
热议问题