Which command should be used on the command line to install the query module in python version 3.4?
Installation Requestspip
pip
not useful for installing a query module in python 3.4 version. Because when you run the error script below appears
ImportError: no module named "queries"
python -m pip installation requests
On Windows, I found navigating to my Python folder using CMD
cd C:\Python36\
and then run the command line:
python -m pip install requests
python, C:/python34 , python:
now you can run this comand
cd C:\Python34
On Windows 10, use this:
py -m install requests