当我键入正常的博览会代码并启动我的项目时,出现以下错误:
npm ERR! path git
npm ERR! code ENOENT
npm ERR! errno ENOENT
npm ERR! syscall spawn git
npm ERR! enoent Error while executing:
npm ERR! enoent undefined ls-remote -h -t ssh://git@github.com/expo/react-native-maps.git
npm ERR! enoent
npm ERR! enoent
npm ERR! enoent spawn git ENOENT
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Atharva Sawant\AppData\Roaming\npm-cache\_logs\2019-03-27T17_07_14_954Z-debug.log
Process exited with non-zero code: 1
Set EXPO_DEBUG=true in your env to view the stack trace.
答案 0 :(得分:0)
我搜索了错误并找到了解决方案。
我通过参考the link.
来草拟答案。我能够通过先安装https://git-for-windows.github.io/之前为Windows安装Git来使其工作。
然后,而不是打开常规命令提示符并发出apm install命令,请转到Windows的“开始”菜单并打开Git CMD。在那里运行命令,它应该可以工作。
或
您尝试将GIT添加到$ PATH
如果无法使用Set,请尝试使用Setx添加它。
语法示例为:
setx PATH "%PATH%;C:\Program Files\MySQL\MySQL Server 5.5\bin" /M
如果还有其他问题,请发表评论。