如何在 Flutter 上解决 "Unable to find git in your PATH"?

How to solve "Unable to find git in your PATH" on Flutter?

我刚刚尝试在 Linux 上安装 Flutter,当我尝试 运行 flutter 命令(flutter doctor)时,我得到了

Error: Unable to find git in your PATH.

我该如何解决这个问题?

使用以下命令安装它。

sudo apt-get install git

添加

C:\Program Files\Git\bin\git.exe;C:\Program Files\Git\cmd;C:\Windows\System32 

到您的 PATH 变量

不要为 git 创建新变量,而是像我一样一个接一个地添加它们,用 ;

分隔它们

我在 Windows 10 上遇到了同样的问题。我已经尝试了所有方法,但 运行 cmd as Administrator 解决了我的问题。

只需将 C:\Windows\System32 添加到您的系统变量 PATH。 有效

C:\src\flutter\bin;C:\Windows\System32

只需添加此路径

卸载重新安装 GIT 解决了我的问题。

您可以下载 64 位 Git 用于 Windows 安装程序 https://git-scm.com/download/win

我也遇到了同样的问题,因为我的系统没有安装 git。所以我从 https://git-scm.com/downloads 下载了 git 并安装了它,安装后就成功了。

FOR WINDOWS:如果您在 git 安装期间选择了 visual studio 代码并且在 windows 上有多个用户帐户,那么您需要做的就是卸载 git 并重新安装 git 选择 vim 作为默认编辑器而不是 visual studio 代码。在 git 安装期间选择 visual studio 代码时,您也会收到警告。注意这一点。 对我来说,将 visual studio 代码设置为默认值并拥有多个用户帐户是个问题。

在 windows 10 C:\src\flutter\bin C:\Windows\System32 C:\Windows\System32\WindowsPowerShell\v1.0 C:\程序Files\Git\bin\git.exe C:\程序Files\Git\cmd

尝试根据您的 linux 发行版从此处安装 git https://git-scm.com/download/linux

添加路径后: C:\src\flutter\bin C:\Windows\System32 C:\Windows\System32\WindowsPowerShell\v1.0 C:\程序Files\Git\bin\git.exe C:\程序Files\Git\cmd 尝试使用 windows powershell (admin),它对我有用