When I try to import Beautifulsoup
import bs4I keep getting the error
ImportError: No module named bs4I have tried to address this by trying all of the following (individually and together) with Python 3 and have had no success. What's going wrong?
sudo pip3 install beautifulsoup4
sudo apt-get install python3-bs4 2 1 Answer
The following approach appears to be working:
sudo pip3.6 install bs4from bs4 import BeautifulSoup