I am working on a kaggle notebook. I tried to import bs4 but its showing error ModuleNotFoundError: No module named 'bs4'
My internet is on in kaggle settings. What is the solution?
I am working on a kaggle notebook. I tried to import bs4 but its showing error ModuleNotFoundError: No module named 'bs4'
My internet is on in kaggle settings. What is the solution?
As mentioned in the comment, you should try to install the module first.
Create a cell at the beginning of the notebook and type:
!pip install bs4
Then you should be able to import the module.