beautifulsoup - I cannot import beautiful soup on python -
i installed beautiful soup library,
and seems set there 'bs4' folder in c:\python33\lib\site-packages.
(i changed name 'bs4' before installation, , went same after install)
but when type in 'from bs4 import beautifulsoup' in code, says there no such library.
and don't see 'beautifulsoup.py' or something. isn't there supposed one?
i'm confused. please?
the module names case sensitive.
try
from bs4 import beautifulsoup
Comments
Post a Comment