首页 > 解决方案 > Git 审查未使用 PIP 安装

问题描述

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

启动器中的致命错误:无法使用 '"c:\python39\python.exe" "C:\Python39\Scripts\pip.exe" install git-review' 创建进程:系统找不到指定的文件

我收到这个错误我已经尝试了很多方法来解决它。通过再次安装 pip 和 python。并尝试旧问题来解决此错误但无法解决

标签: pythonpython-3.xpipgit-review

解决方案


请升级 pippython -m pip install --upgrade --force-reinstall pip

然后git-review使用python -m pip install git-review.

建议使用python -m pip install而不是 just pip install。原因是它将为您的 python 安装使用正确的解释器,特别是如果您安装了多个版本。更多细节在这里:https ://snarky.ca/why-you-should-use-python-m-pip/

干杯!


推荐阅读