0

我正在尝试同时安装,但面临这个问题

PS D:\devconnector> npm i concurrently
npm ERR! Unexpected end of JSON input while parsing near '...TURE-----\r\nVersion:'

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\baner\AppData\Roaming\npm-cache\_logs\2020-04-24T08_55_51_704Z-debug.log
4

1 回答 1

1

这似乎是一个缓存问题。您可以使用以下命令清除 npm 缓存并尝试再次安装该软件包。

npm cache clean --force
npm i concurrently
于 2020-04-24T09:08:56.743 回答