ModuleNotFoundError: No module named ‘requests’. But ‘requests’ already installed

@python3

Try using

import urllib.request

Only if you trying to work with urllib

Else try to uninstall requests and then again install it using pip

pip uninstall requests

and again install it

pip install requests

Leave a Comment