Git review is not installing using PIP

986 Views Asked by At

C:\Users\Dell>pip install git-review

Fatal error in launcher: Unable to create process using '"c:\python39\python.exe" "C:\Python39\Scripts\pip.exe" install git-review': The system cannot find the file specified

I am getting this error i have tried many way to resolve it. by installing pip and python again. and trying old question to solve this error but unable to solve

3

There are 3 best solutions below

1
programandoconro On BEST ANSWER

Please upgrade pip with python -m pip install --upgrade --force-reinstall pip

Then install git-review using python -m pip install git-review.

Using python -m pip install instead of just pip install is recommended. The reason is that it will use the correct interpreter for your python installation, specially if you have many versions installed. More details here: https://snarky.ca/why-you-should-use-python-m-pip/

Cheers!

0
Jason Rebelo Neves On

Could be many things, you're very likely to find the answer here. (Posted as answer because I don't have enough rep yet for commenting)

0
Bharat Khatri On

As @programandoconro mentioned in comment

python -m pip install --upgrade --force-reinstall pip and then python -m pip install git-review

worked for me