I'm trying to execute a simple PY file and I'm getting the following error:
Traceback (most recent call last):
File "docker_pull.py", line 8, in <module>
import requests
ModuleNotFoundError: No module named 'requests'
Looking at Python install folder I found requests module under: C:\Program Files (x86)\Python 3.7.1\Lib\site-packages\pip\_vendor\requests
. How can I force Python to use the module already installed ?
P.S: I don't have internet connection in this machine.