-1

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?

1 Answers1

1

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.

Francesco Alongi
  • 499
  • 3
  • 13