How to install requests module in python 3.4 version on windows?

user3654181 picture user3654181 · May 29, 2015 · Viewed 94.1k times · Source

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'

Answer

Thirumalreddy_Bandi picture Thirumalreddy_Bandi · May 29, 2015

python -m pip install requests or py -m pip install requests