I'm extremely new to Python, so I can only apologize for my unadulterated incompetence.
I'm trying to learn to web scrape, so I did pip install requests
and that worked fine.
In PyCharm, however, I receive ModuleNotFoundError: No module named 'requests'
when I try import requests
.
PyCharm offers from pip._vendor import requests
to rectify this, but from this I get:
AttributeError: partially initialized module 'pip._vendor.requests' has no attribute 'Session' (most likely due to a circular import)
Any help would be greatly appreciated.