I'm trying to install the requests module with pip, but I'm not sure if I'm doing it right. I open up the command prompt on windows(windows key+r,type in 'cmd' and hit enter). I have pip already installed, but when I type in 'pip install requests' to the command prompt it says
C:\Users\khern>pip install requests
'pip' is not recognized as an internal or external command,
operable program or batch file.
When I go check if pip is installed, this comes up
C:\Users\khern>python -m pip --version
'python' is not recognized as an internal or external command,
operable program or batch file.
So, then I go to add python's path to the environment variables changing the top part and the bottom part so hopefully the command prompt can run python programs. But when I go to the command prompt and type python, it still says
C:\Users\khern>python
'python' is not recognized as an internal or external command,
operable program or batch file.
Can someone tell me what I'm doing wrong? I'm new to programming, and just want to install the 'requests' module to finish the class I'm taking on python. Thanks!