1

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

404pio
  • 1,080
  • 1
  • 12
  • 32

3 Answers3

1

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!

programandoconro
  • 2,378
  • 2
  • 18
  • 33
0

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)

Jason Rebelo Neves
  • 1,131
  • 10
  • 20
0

As @programandoconro mentioned in comment

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

worked for me