仅在 Git Bash 中,节点不被识别为内部或外部命令

仅在 Git Bash 中,节点不被识别为内部或外部命令

node 和 git 安装在同一个目录中,git 可以识别 node 和 npm,但是当我在 git bash 中运行此脚本时,它会抛出此错误。我已经在 PS 中测试过运行,运行正常。有什么想法吗?

看起来已经全部安装并识别了?

答案1

使用 mklink 将节点引用到 git bin 文件夹

mklink C:\Program Files\git\usr\bin\node.exe  C:\Program Files\nodejs\node.exe

相关内容