Here is what I'm using:
- Python 3.7.x on PyCharm 2018.2.4
- Windows 10.
I'm following a tutorial about website parsing, but the struggle begins before I can even really start out. I get the error message:
ModuleNotFoundError: No module named 'requests'
The package should be installed properly (pip3 install requests
) and I run only that single version of python as far aI i know. I can find the package in the directory I'd expect it to be (C:\Users\Bob\AppData\Local\Programs\Python\Python37\Lib\site-packages).
I expect the same problem for the other package (beautifulsoup4), but the script doesn't even get that "far".
So, I'm aware that I must've done something incorrectly but I can't figure out what.
Any advice?