enter image description here我最近向package.JSON添加了一些依赖项,并尝试安装npm。但显示与git相关的错误,也找不到
npm错误!路径git
npm ERR!代码ENOENT
npm ERR! errno ENOENT
npm ERR! syscall生成git
npm ERR! enoent执行时出错:
npm ERR! enoent未定义ls-remote -h -t ssh://git@github.com/eligrey/FileSaver.js.git
npm ERR! enoent
npm ERR! enoent
npm ERR! enoent生成git ENOENT
npm ERR! enoent这与npm无法找到文件有关。 npm ERR! enoent
npm ERR!可以在以下位置找到此运行的完整日志:
答案 0 :(得分:0)
您需要在计算机中安装git
才能使其正常运行。
undefined ls-remote -h -t ssh://git@github.com/eligrey/FileSaver.js.git
应该是
git ls-remote -h -t ssh://git@github.com/eligrey/FileSaver.js.git
存在与git path相关的错误。 check this ls-remote command
答案 1 :(得分:0)