Beautiful Soup is a
Python library for pulling data out of HTML and XML files.
Recently face issue with python packages.
Server Traceback:
openerp@odedra-Lenovo-Z50-70:~$ python testing.py
Traceback (most recent call last):
File "testing.py", line 1, in <module>
from bs4 import BeautifulSoup
ImportError: No module named bs4
Here is command for resolving issue on Linux.
sudo apt-get update
sudo apt-get upgrade
pip install BeautifulSoup4
For other OS you may advice to visit Here
Once you completed download the compressed file , decompress the file and then inside you will see a python file named setup.py. This is the install file of the package, you need to run a command prompt in the folder and execute following line :
python setup.py install
I hope you like this article. Share your views to improve content. Happy Learning !!!
Recently face issue with python packages.
Server Traceback:
openerp@odedra-Lenovo-Z50-70:~$ python testing.py
Traceback (most recent call last):
File "testing.py", line 1, in <module>
from bs4 import BeautifulSoup
ImportError: No module named bs4
Here is command for resolving issue on Linux.
sudo apt-get update
sudo apt-get upgrade
pip install BeautifulSoup4
For other OS you may advice to visit Here
Once you completed download the compressed file , decompress the file and then inside you will see a python file named setup.py. This is the install file of the package, you need to run a command prompt in the folder and execute following line :
python setup.py install
I hope you like this article. Share your views to improve content. Happy Learning !!!
Youtube Video
No comments:
Post a Comment