网络爬虫,python3.6安装scrapy框架,cmd指令:pip install scrapy
由于Scrapy所依赖的Twisted和Lxml在Windows/Python 3.x的平台还不能通过pip直接安装,所以直接使用pip也无法安装Scrapy。
https://www.lfd.uci.edu/~gohlke/pythonlibs/ 下载Twisted‑17.9.0‑cp36‑cp36m‑win32.whl
用pip install E:\Twisted-17.9.0-cp36-cp36m-win32.whl 进行安装
安装使用语句:pip install scrapy,完成安装。
语句:Scrapy startproject turtoria 进行验证。
安装好以后,再该网址进行scrapy框架的学习,http://scrapy-chs.readthedocs.io/zh_CN/latest/intro/examples.html
网友评论