I am using this python version
Python 3.7.0
And this pip version
pip 18.0
And then I install the bs4 package
pip install beautifulsoup4
pip install bs4
This all works (without errors) but now when I run a python script with:
from bs4 import BeautifulSoup
I get the following error:
ModuleNotFoundError: No module named 'bs4'
Any thoughts on what goes wrong here?