如何在 Arch Linux 上为 Flutter 2 Web 设置 Google Chrome 的环境变量
How to set environment variable of Google Chrome for Flutter 2 Web on Arch Linux
使用 flutter doctor
我知道 flutter 找不到 google-chrome 可执行文件。
我正在使用鱼 shell。
我在/中设置了环境变量。 config/fish 按照医生的说法使用 set CHROME_EXECUTABLE /usr/bin/google-chrome-stable
命令,但没有帮助。
在 Arch Linux 上,专有版本 google chrome 的执行文件名称为 google-chrome-stable
,但 flutter 试图准确找到 google-chrome
.因此,为/usr/bin/google-chrome-stable
设置环境变量没有效果。
因此,要解决这个问题,您需要使用命令sudo ln -s /usr/bin/google-chrome-stable /usr/local/bin/google-chrome
创建一个名为google-chrome
的link到google-chrome-stable
使用 flutter doctor
我知道 flutter 找不到 google-chrome 可执行文件。
我正在使用鱼 shell。
我在/中设置了环境变量。 config/fish 按照医生的说法使用 set CHROME_EXECUTABLE /usr/bin/google-chrome-stable
命令,但没有帮助。
在 Arch Linux 上,专有版本 google chrome 的执行文件名称为 google-chrome-stable
,但 flutter 试图准确找到 google-chrome
.因此,为/usr/bin/google-chrome-stable
设置环境变量没有效果。
因此,要解决这个问题,您需要使用命令sudo ln -s /usr/bin/google-chrome-stable /usr/local/bin/google-chrome
google-chrome
的link到google-chrome-stable