Git bash "bash: yarn: command not found"
Git bash "bash: yarn: command not found"
最近,在我的 git bash 中不再工作 yarn,给我错误 bash: yarn: command not found
,好像它从未安装过一样。
但是正如您在附件中看到的 photo,它存在。
我也尝试重新安装软件包,但仍然没有...
这个问题与IDEA的安装不谋而合,我认为问题可能来自这里,但是我在互联网上没有找到任何有用的东西。
作为:
检查您的路径(echo $PATH
在您的 bash 会话中)。
所述路径应引用 /C/Users/username/AppData/Roaming/npm/node_modules/yarn/bin
如果没有,install yarn 通过 npm install --global yarn
(全局安装)
最近,在我的 git bash 中不再工作 yarn,给我错误 bash: yarn: command not found
,好像它从未安装过一样。
但是正如您在附件中看到的 photo,它存在。
我也尝试重新安装软件包,但仍然没有...
这个问题与IDEA的安装不谋而合,我认为问题可能来自这里,但是我在互联网上没有找到任何有用的东西。
作为
检查您的路径(
echo $PATH
在您的 bash 会话中)。
所述路径应引用/C/Users/username/AppData/Roaming/npm/node_modules/yarn/bin
如果没有,install yarn 通过
npm install --global yarn
(全局安装)