I have installed bs4
pip install beautifulsoup4
I imported it
from bs4 import BeautifulSoup
And when i try to execute my code i get this error code:
Traceback (most recent call last): File "C:....main.py", line 2, in <module> from bs4 import BeautifulSoup ModuleNotFoundError: No module named 'bs4'
I realy dont get what the problem is, i installed bs4
First i tried :
from bs4 import BeautifulSoup
After what i tried
import bs4
I tried
pip install beautifulsoup4
And then
pip install bs4
And still not working
3