I have Python Script where "requests" module has been imported. I am trying to execute this script in Linux terminal and getting error like
Traceback (most recent call last):
File "./test3.py", line 5, in <module>
import requests
ImportError: No module named requests
Then, I tried to install the "requests" module by running the below command on Linux terminal and getting some information as below
pip install requests
Requirement already satisfied: requests in /usr/local/lib/python2.7/site-packages
So, Please suggest me to resolve this issue.
Thanks,