Chung Boon Lim
Chung Boon Lim

Reputation: 1

BeautifulSoup Installed but still get ImportError: No module named BeautifulSoup

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

Answers (1)

d4riush
d4riush

Reputation: 430

Try:

from bs4 import BeautifulSoup

Upvotes: 2

Related Questions