WIN10 安装Scrapy 爬虫框架

官方安装文档:http://doc.scrapy.org/en/1.1/intro/install.html

  1. 安装Python
    官网
https://www.python.org/downloads/

选择想要的版本下载安装
然后在cmd pip install scrapy,出现报错。 少了Twisted,于是安装Twisted

  1. 安装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。

  1. 安装Scrapy
pip install scrapy

中间会安装一堆第三方包,最后提示这个就是安装成功了

Installing collected packages: scrapy
Successfully installed scrapy-1.4.0

仅供参考,Windows安装Scrapy 还是很方便的

    原文作者:Chester_01e2
    原文地址: https://www.jianshu.com/p/90425cb5b26a
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞