问题描述:

1、cmd 环境下安装scrapy:pip install scrapy  报错“unable to find vcvarsall.bat

2、根本原因是twisted没有安装成功

3、直接安装twisted:pip install twisted   还是报错“unable to find vcvarsall.bat

解决:

1、下载twisted;

    https://www.lfd.uci.edu/~gohlke/pythonlibs/

搜索 twisted   ,根据你的python版本和操作系统下载文件

Python问题-安装scrapy报unable to find vcvarsall.bat

2、安装twisted   

pip install twisted   

3、安装scrapy

成功。

Python问题-安装scrapy报unable to find vcvarsall.bat

4、安装后小测  执行 scrapy -h


相关文章: