[Tutor] (no subject)

Mark Lawrence breamoreboy at gmail.com
Fri Feb 28 13:57:29 EST 2020


On 28/02/2020 09:02, Abdurauf Isokjonov wrote:
> Even i’ve installed bs4, python says “no module named bs4”. How to solve
> this?

The odds are you've installed beautifulsoup in one version of python but 
are trying to run it from another.  To check try running things like the 
following from the command line:-

python -c "import bs4"
python2.7 -c "import bs4"
python3.6 -c "import bs4"
python3.7 -c "import bs4"

What happens?

-- 
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.

Mark Lawrence



More information about the Tutor mailing list