BeautifulSoup for Jupyter

How do I install BS4 for Jupyter Notebook (Web Version)?

Welcome, TiasX10.

Your first option is:

!pip install bs4

Second option (generally works better, but makes use of your system installed packages)

import sys
!{sys.executable} -m pip install numpy

Hope this helps

You can simply open your command prompt and run this command

pip install bs4

If you are interested in web scraping with Python , check out the article.