How to Install BeautifullSoup4 and Requests Library in Jupyter Notebook
May 23, 2022
First Check whether the BeautifullSoup4 and Requests library are installed or Not by Using the below code:
Code: import beautifulsoup4
Code: import requests
If the Code mentioned above didn't throw any error then the Library is already installed, if there is an Error while Running the Above Code then use:
!pip install beautifulsoup4
!pip install requests
Need to Know More Check out the Documentation of beautifulsoup4:
Need to Know More Check out the Documentation of Requests
Thank you
By VasuDevan S