爬虫环境
Posted mr-chenshuai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了爬虫环境相关的知识,希望对你有一定的参考价值。
linux环境为例
安装python3
请求库
一、requests库
pipe install requests
注意:出现报错:pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
安装以下俩库:
yum install openssl
yum install openssl-devel
重新编译python3,python3默认没有支持ssl
cd Python-3.6.2
./configure --with-ssl
make
make install
二、selenium
pip3 install selenium==3.4.3(不跟版本默认安装最新版)
三、aiohttp
pip3 install aiohttp
解析库
一、lxml
pip3 install lxml
二、Beautiful Soup
pip3 install beautifulsoup4
三、pyquery
pip3 install pyquery
以上是关于爬虫环境的主要内容,如果未能解决你的问题,请参考以下文章
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段
环境初始化 Build and Install the Apache Thrift IDL Compiler Install the Platform Development Tools(代码片段