Answers for "ImportError: No module named requests"

19

ModuleNotFoundError: No module named 'requests'

pip install requests
Posted by: Guest on May-21-2020
1

import requests, sys, urllib, reImportError: No module named requests

Hack the box - buff 

Guys, this problem took me 1 day to find the problem and the issue is the
script needs python 2.7 and is missing libraries.
You'll need to install them.

Open terminal:
Install Python 2.7
sudo apt-get install python-pip

Install pip
sudo pip install requests

Install colorama
sudo pip install colorama

Run exploit:
python exploitname.py url

Happy Hacking!
Posted by: Guest on November-09-2020
0

ModuleNotFoundError: No module named 'requests'

python3.6 -m pip install requests
Posted by: Guest on March-31-2021
0

ImportError: No module named requests

sudo easy_install -U requests
Posted by: Guest on August-15-2021
-2

ImportError: No module named requests

[Solved] ImportError: No module named requests
Posted by: Guest on June-18-2021

Code answers related to "ImportError: No module named requests"

Browse Popular Code Answers by Language