Reputation: 461
What command should I use in command prompt to install requests module in python 3.4 version ???
pip install requests
is not useful to install requests module in python 3.4 version. Because while running the script below error is coming
ImportError : no module named 'requests'
Upvotes: 20
Views: 110464
Reputation: 1
After installing python which comes with pip run and exe and input "pip install requests" It should do
Upvotes: 0
Reputation: 29
I install it by Anaconda:
pip install requests
and there is no error occured like you.
Upvotes: 1
Reputation: 626
python -m pip install requests
or py -m pip install requests
Upvotes: 59
Reputation: 83
If you hace problems with the python command only need add the route C:/python34 or the route went you have python installed:
now you can run this comand
cd C:\Python34
python -m pip install requests
Upvotes: 1
Reputation: 31
On Windows, I found navigating to my Python folder via CMD worked
cd C:\Python36\
and then running the commandline:
python -m pip install requests
Upvotes: 3