【发布时间】:2021-10-27 18:57:26
【问题描述】:
我已经在 mac 上安装了 graalvm,我在安装目录的 /bin 文件夹中看到了 gu 实用程序。当我尝试在 /bin 文件夹中运行 gu 命令时,例如
gu install native-image
我收到消息:
zsh: command not found: gu
我在这里错过了什么?
【问题讨论】:
我已经在 mac 上安装了 graalvm,我在安装目录的 /bin 文件夹中看到了 gu 实用程序。当我尝试在 /bin 文件夹中运行 gu 命令时,例如
gu install native-image
我收到消息:
zsh: command not found: gu
我在这里错过了什么?
【问题讨论】:
您缺少路径。试试:
./gu install native-image
【讨论】: