1. 错误显示如:ImportError: No module named 'selenium'
解决方法:
(1)下载模块或包
selenium问题,下载selenium-2.48.tar.gz 地址:http://pypi.python.org/pypi/selenium
执行from bs4 import BeautifulSoup时,报ImportError: No module named bs4问题,下载beautifulsoup4-4.3.2.tar.gz地址:
http://www.crummy.com/software/BeautifulSoup/bs4/download/4.3/beautifulsoup4-4.3.2.tar.gz
chardet问题,下载chardet-3.0.4.tar.gz 地址:https://pypi.org/project/chardet/#files
如下图:
(2)解压到Python安装目录下的根目录中:
(3)运行cmd,进入解压缩后的目录(如果Python默认安装在C盘下,打开cmd之后可以使用cd语句先返回根目录,再进入Python27\beautifulsoup4-4.3.2)
(4)进入Python27\beautifulsoup4-4.3.2之后,输入python setup.py install 来安装bs4模块,如下图: