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

前端 未结 6 641
粉色の甜心
粉色の甜心 2021-02-04 03:26

What command should I use in command prompt to install requests module in python 3.4 version ???

pip install requests

is not useful

相关标签:
6条回答
  • 2021-02-04 03:50

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

    0 讨论(0)
  • 2021-02-04 03:58

    After installing python which comes with pip run and exe and input "pip install requests" It should do

    0 讨论(0)
  • 2021-02-04 04:01

    I install it by Anaconda:

    pip install requests
    

    and there is no error occured like you.

    0 讨论(0)
  • 2021-02-04 04:04

    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

    0 讨论(0)
  • 2021-02-04 04:13

    On Windows 10, use this:

    py -m install requests
    
    0 讨论(0)
  • 2021-02-04 04:14

    If you hace problems with the python command only need add the route C:/python34 or the route went you have python installed:

    1. List item
    2. Right click on "My computer"
    3. Click "Properties"
    4. Click "Advanced system settings" in the side panel
    5. Click "Environment Variables"
    6. Click the "New" below system variables
    7. find the path variable and edit
    8. add this variable ;C:\Python34 with the semicolon

    now you can run this comand

    cd C:\Python34

    python -m pip install requests

    0 讨论(0)
提交回复
热议问题