1.直接使用pip install scrapy
命令安装,是会出现错误,无法完成安装。
2.scrapy安装时依赖的包有 parsel、w3lib、cryptography、
pyOpenSSL、lxml、twisted
。其中lxml
和twisted
使用pip安装会出现问题。可以到该http://www.lfd.uci.edu/~gohlke/pythonlibs/
链接下载相应的lxml
和twisted
的包。
3.为了安装上面的.whl
文件,先执行pip install wheel
命令安装wheel
。
4.然后,执行pip install *.whl
(下载好的.whl文件)
5.最后,执行pip install scrapy
。