Can't install 'pip'

Hello,
Before pip was working fine but I had to uninstall Python when I reinstalled it pip was working any more I tried to add it the ‘Path’ in the environment or tried to modify the installation but nothing worked, I didn’t even find ‘pip.exe’ since the scripts folder is empty. If some could help I’d very greateful.
PS: I’m using Windows 10

Sharing the commands and errors you are seeing would be helpful. Right now we are forced to guess.

Nine times out of ten, uninstalling Python, deleting the rest of its installation folder, and reinstalling it will solve your issue. If it worked on your machine previously, this is more like 99%.

So when I input ‘pip’ it prompt me with an error : “‘pip’ is not recognized as an internal or external command, operable program or batch file.”
I already tried to uninstalling and deleting the files but it does not work.

So when I input ‘pip’ it prompt me with an error : “‘pip’ is not
recognized as an internal or external command, operable program or
batch file.”

Would that be at the Windows command prompt?

I already tried to uninstalling and deleting the files but it does not
work.

It is hard to know what that means, specificly.

Do you have a working Python install which you can invoke from the
command line? Pretending for the moment that that is invoked by typing:

python

then try typing:

python -m pip

Adjust “python” to match whatever you type to start the interactive
Python prompt.

Cheers,
Cameron Simpson cs@cskk.id.au

Yes I 'm using the Windows CMD. And you just fixed my problem.
Thank you

I’m glad to hear that.

BTW, one advantage of the python -m pip form is that if you have
multiple Pythons installed, the “pip” will install for the python you
invoke.

Cheers,
Cameron Simpson cs@cskk.id.au