Reputation: 1
I installed BeautifulSoup successfully. It's the latest update. But I still get "
ImportError: No module named BeautifulSoup
when running the code. need help!!
Upvotes: 0
Views: 74
Reputation: 430
Try:
from bs4 import BeautifulSoup
Upvotes: 2