Python module not found even though “Requirement Already satisfied in Pip”

Run in command prompt.

pip list

Check what version you have installed on your system if you have an old version.

Try to uninstall the package…

pip uninstall requests

Try after to install it:

pip install requests

You can also test if pip does not do the job.

easy_install requests

Leave a Comment