-3

When I installed python it said that it would have installed pip but I didn't get it to work. I searched the web and found the get-pip way of installing. But unfortunately It doesn't work for me. My CMD doesn't give a reaction on any commands regarding this (see the picture) it also doesn't install pip. Does someone have a fix for this problem? I'm using python 3.9 and the pip file is from (https://bootstrap.pypa.io/get-pip.py)

francisco neto
  • 652
  • 1
  • 2
  • 12
Max
  • 1
  • 1
  • Does this answer your question? ['pip' is not recognized as an internal or external command](https://stackoverflow.com/questions/23708898/pip-is-not-recognized-as-an-internal-or-external-command) – Syafiqur__ Oct 26 '20 at 04:14

2 Answers2

1

I suggest you try to set the environment variable to see it is fixed or not. The easiest way and not recommended way to fix it is to uninstall python3 and reinstall it again. During reinstalling, it was a check box for adding environment variable.

Jonathan Sum
  • 66
  • 1
  • 7
0

you don't need it install pip separately you can use something like this (on linux):

python3 -m pip install nameoflibraryyouwanttoinstall

(on windows):

py -3 -m pip install nameoflibraryyouwanttoinstall

but its recommended to work in a python virtual environment. Here is a good article on how to setup a virtual environment.

Moin Khan
  • 23
  • 5