当我从git克隆一个Angular 11项目并运行npm install
时,我得到了以下错误:
npm WARN deprecated tslint@6.1.3: TSLint has been deprecated in favor of ESLint. Please see https://github.com/palantir/tslint/issues/4534 for more information.
npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
npm WARN deprecated har-validator@5.1.5: this library is no longer supported
npm WARN deprecated uuid@3.4.0: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
npm ERR! cb() never called!
npm ERR! This is an error with npm itself. Please report this error at:
npm ERR! <https://npm.community>
npm ERR! A complete log of this run can be found in:
npm ERR! /home/something/.npm/_logs/2021-06-26T17_17_38_979Z-debug.log
我在Ubuntu 20.04.2和节点14.17.1和npm 6.14.13上运行。
到目前为止,我已经再次尝试卸载和安装node和npm,并运行以下命令,但都不起作用:
npm cache clean --force
npm install --no-package-lock
在我克隆的项目中也没有node_modules和package-lock.json。所以删除它们也不起作用(因为它们不存在)。
发布于 2021-06-27 01:46:40
试试这个
npx npmc@latest install
https://stackoverflow.com/questions/68144868
复制相似问题