Hi Guys,
I am trying to import the BeautifulSoup module to parse my HTML file. But it is showing me the below error.
from bs4 import BeautifulSoup
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-12-f33cf0cb8fd3> in <module>
----> 1 from bs4 import BeautifulSoup
ModuleNotFoundError: No module named 'bs4'
How can I solve this error?