Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
563 views
in Technique[技术] by (71.8m points)

Cant run python script in Linux due to missing "requests" module

I am running a python script in linux but it shows this error

python 47138.py 
Traceback (most recent call last):
  File "47138.py", line 11, in <module>
    import requests
ImportError: No module named requests

I tried installing "requests" with pip and pip3 but both returned same output:

pip3 install requests
Requirement already satisfied: requests in /usr/lib/python3/dist-packages (2.25.1)

Next i tried uninstalling requests but:

pip3 uninstall requests
Found existing installation: requests 2.25.1
Not uninstalling requests at /usr/lib/python3/dist-packages, outside environment /usr
Can't uninstall 'requests'. No files were found to uninstall.
question from:https://stackoverflow.com/questions/65880595/cant-run-python-script-in-linux-due-to-missing-requests-module

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Installed requests manually.

Clone the public repository: $ git clone git://github.com/kennethreitz/requests.git

Download tarball: $ curl -OL https://github.com/kennethreitz/requests/tarball/master

$ python setup.py


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...