Home > database >  Pip not woking normal in pyhon
Pip not woking normal in pyhon

Time:02-16

I have pytho 3.10.1 My pip was working normal until I installed a file using pip runny.py. Now my pip is not working. I got this error message: "System cannot execute the specified program". I then tried executing this command "python -m pip --version" but this did not work. Please help me. Thank you.

CodePudding user response:

You are getting error because of that corrupted file which you installed using pip

Try uninstalling the program, in which you got the error.

You can uninstall by going to path where all the modules are saved and delete that module folder.

And then try,

python -m pip install --upgrade pip

Thank You.

  • Related