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

前端 未结 6 644
粉色の甜心
粉色の甜心 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 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

提交回复
热议问题