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'
Installing Python Packages with Setup.py To install a package that includes a setup.py file, open a command or terminal window and: cd into the root directory where setup.py is located. Enter: python setup.py install.
The Requests library is available for both Python 2 and Python 3 from the Python Package Index (PyPI), and has the following features: Allows you to send HTTP/1.1 PUT, DELETE, HEAD, GET and OPTIONS requests with ease.
python -m pip install requests
or py -m pip install requests
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With