报错内容:
npm WARN read-shrinkwrap This version of npm is compatible with lockfileVersion@1, but package-lock.json was generated for lockfileVersion@2. I'll try to do my best with it!
npm WARN tar ENOENT: no such file or directory, open '/home/wvp-GB28181-pro/web_src/node_modules/.staging/source-map-6e15e1a3/dist/source-map.min.js'
从报错字面意思可以知道是npm版本不兼容问题,有个大佬总结出了关于版本问题的两种报错情况:
另外的使用npm v6的版本产生的lockfileVersion为1,而使用npm v7的版本产生的lockfileVersion为2,根据报错意思就是需要将npm更新到最新的版本
这里因为我是通过docker启动的,所以需要从dockfile去修改
在dockerfile中加入一行:RUN npm install -g npm@7.6.0 即可
参考文章:
npm install 安装依赖时参照 package-lock.json,npm 版本不对导致警告。 - zheyi420 - 博客园 (cnblogs.com)