官方安装文档:http://doc.scrapy.org/en/1.1/intro/install.html
- 安装Python
官网
https://www.python.org/downloads/
选择想要的版本下载安装
然后在cmd pip install scrapy
,出现报错。 少了Twisted,于是安装Twisted
- 安装Twisted
下载Twisted (按版本下载:http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml)
安装
pip install [文件名]
查看是否安装成功
python
Python 3.6.1 (v3.6.1:69c0db5, Mar 21 2017, 18:41:36) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import twisted
>>>
到这里Twisted已经安装成功了,继续安装Scrapy。
- 安装Scrapy
pip install scrapy
中间会安装一堆第三方包,最后提示这个就是安装成功了
Installing collected packages: scrapy
Successfully installed scrapy-1.4.0
仅供参考,Windows安装Scrapy 还是很方便的