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

后端 未结 2 1139
你的背包
你的背包 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:05

    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++)

    0 讨论(0)
  • 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
    
    0 讨论(0)
提交回复
热议问题