import requests 2c sys 2c urllib 2c reimporterror 3a no module named requests

Solutions on MaxInterview for import requests 2c sys 2c urllib 2c reimporterror 3a no module named requests by the best coders in the world

showing results for - "import requests 2c sys 2c urllib 2c reimporterror 3a no module named requests"
Alice
18 Sep 2017
1Hack the box - buff 
2
3Guys, this problem took me 1 day to find the problem and the issue is the
4script needs python 2.7 and is missing libraries.
5You'll need to install them.
6
7Open terminal:
8Install Python 2.7
9sudo apt-get install python-pip
10
11Install pip
12sudo pip install requests
13
14Install colorama
15sudo pip install colorama
16
17Run exploit:
18python exploitname.py url
19
20Happy Hacking!
21
22