Skip to content Skip to sidebar Skip to footer

Cannot Import Name Module With Module Correctly Installed

new in python. I have python 2.7. I just installed a new module (beatifulsoup) from cmd in windows 7 which is correctly installed : When I enter the python consol from the cmd I c

Solution 1:

Are you trying to import like this:

from bs4 import BeautifulSoup

If not, try it that way. Hope this helps!

(Perhaps you should add your import statement to the question so we can see if there is a problem with the statement or if the issue resides somewhere else)

Post a Comment for "Cannot Import Name Module With Module Correctly Installed"