What command should I use in command prompt to install requests module in python 3.4 version ???
pip install requests
is not useful
python -m pip install requests
or py -m pip install requests
After installing python which comes with pip run and exe and input "pip install requests" It should do
I install it by Anaconda:
pip install requests
and there is no error occured like you.
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
On Windows 10, use this:
py -m install requests
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