Palle Broe
Palle Broe

Reputation: 99

ImportError: No module named bs4 on mac with Python 2.7

I'm trying to install Beautiful Soup 4.6.0 on my mac, but I keep on getting the error message below:

Image from Beautiful Soup

I have tried to install it as easy install and pip install beautifulsoup, but still keep on getting the same error message.

The terminal description is below:

Terminal

Upvotes: 0

Views: 1534

Answers (1)

Sigma
Sigma

Reputation: 38

in terminal, typepython -m pip install beautifulsoup if that doesn't work, try updating pip

python -m pip install --upgrade pip

then retry the first command

Upvotes: 1

Related Questions