Ionic “.”无法识别为内部或外部命令、可操作程序或批处理文件,NodeJS

iibxawm4  于 2023-10-14  发布在  Ionic
关注(0)|答案(1)|浏览(235)

我正在我的ionic angular项目上尝试npm install。我得到的就是这个错误。

command failed
npm ERR! command C:\Windows\system32\cmd.exe /d /s /c ./node_modules/.bin/node-pre-gyp 
install --fallback-to-build --library=static_library
npm ERR! '.' is not recognized as an internal or external command,
npm ERR! operable program or batch file.

我使用的是Node 16.14.2和npm 8.5以及angular版本14。Windows 11
我试

npm install -g node-gyp
npm install grpc -g

什么都不管用。
我坚持了两天。

dvtswwa3

dvtswwa31#

grpc库已经被弃用两年多了,它与Node 16不兼容。推荐的替代品是@grpc/grpc-js

相关问题