How to install beautiful soup for anacadona?

The easiest way to install beautiful soup is using conda by typing the following into your command prompt:

conda install -c anaconda beautifulsoup4

Then in your python code, you can import it like so:

from bs4 import BeautifulSoup

Leave a Comment