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

Which command should be used on the command line to install the query module in python version 3.4?

Installation Requests

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"

+4
source share
4 answers

python -m pip installation requests

+16
source

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

+1
source

python, C:/python34 , python:

  • " "
  • ""
  • " "
  • " "
  • ""
  • find the path variable and edit
  • add this variable: C: \ Python34 with a semicolon

now you can run this comand

cd C:\Python34

python -m pip install requests

0
source

On Windows 10, use this:

py -m install requests
-1
source

All Articles