BeautifulSoup 3.x
1. Download BeautifulSoup.
[Email protected] python]$ wget http://www.crummy.com/software/BeautifulSoup/download/3.x/BeautifulSoup-3.2.1.tar.gz
2. Unzip.
3. Install the BeautifulSoup module.
[[Email protected] python]$ CD Beautifulsoup-3.2.1[[email protected] beautifulsoup-3.2.1]$ su-c ' python setup.py install ‘
4. Verify that the BeautifulSoup module is imported and the installation is successful without error.
[Email protected] ~]$ Pythonpython 2.6.6 (r266:84292, May from beautifulsoup import BeautifulSoup
BeautifulSoup 4.x
1. Download BeautifulSoup.
[Email protected] python]$ wget http://www.crummy.com/software/BeautifulSoup/bs4/download/4.4/beautifulsoup4-4.4.1.tar.gz
2. Unzip.
[Email protected] python]$ tar zxvf beautifulsoup4-4.4.1.tar.gz
3. Install the BeautifulSoup module.
[[Email protected] python]$ CD Beautifulsoup4-4.4.1[[email protected] beautifulsoup4-4.4.1]$ su-c ' python setup.py insta ll
4. Verify that the BeautifulSoup module is imported and the installation is successful without error.
From BS4 import BeautifulSoup
Others
BeautifulSoup Home: http://www.crummy.com/software/BeautifulSoup/
Python-beautifulsoup Installation