错误:npm install -g @angular/cli
Posted
技术标签:
【中文标题】错误:npm install -g @angular/cli【英文标题】:Error: npm install -g @angular/cli 【发布时间】:2018-05-08 05:41:38 【问题描述】:当我尝试运行这个命令时,它通过错误并且 NPM 没有完全安装。
在此版本的 Node.js 之前,我还安装了 node-v8.9.1-x64.msi,但我遇到了同样的问题,这就是我卸载并安装 node-v6.11.0-x64 的原因
但是,我仍然无法解决这个问题。
节点版本:v6.11.0 NPM 版本:3.10.0
错误信息:
D:\angular\NPM>npm install -g @angular/cli
C:\Users\XXX\AppData\Roaming\npm
`-- (empty)
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules\@a
ngular\cli\node_modules\chokidar\node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@
1.1.3: wanted "os":"darwin","arch":"any" (current: "os":"win32","arch":"x64"
)
npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\
node_modules\\npm\\bin\\npm-cli.js" "install" "-g" "@angular/cli"
npm ERR! node v6.11.0
npm ERR! npm v3.10.10
npm ERR! path C:\Users\XXX\AppData\Roaming\npm\node_modules\.staging\rxjs-8d
1ee8eb
npm ERR! code EPERM
npm ERR! errno -4048
npm ERR! syscall rename
npm ERR! Error: EPERM: operation not permitted, rename 'C:\Users\XXX\AppData
\Roaming\npm\node_modules\.staging\rxjs-8d1ee8eb' -> 'C:\Users\XXX\AppData\R
oaming\npm\node_modules\@angular\cli\node_modules\rxjs'
npm ERR! at destStatted (C:\Program Files\nodejs\node_modules\npm\lib\instal
l\action\finalize.js:25:7)
npm ERR! at C:\Program Files\nodejs\node_modules\npm\node_modules\graceful-f
s\polyfills.js:264:29
npm ERR! at FSReqWrap.oncomplete (fs.js:123:15)
npm ERR!
npm ERR! Error: EPERM: operation not permitted, rename 'C:\Users\XXX\AppData
\Roaming\npm\node_modules\.staging\rxjs-8d1ee8eb' -> 'C:\Users\XXX\AppData\R
oaming\npm\node_modules\@angular\cli\node_modules\rxjs'
npm ERR! at Error (native)
npm ERR! Error: EPERM: operation not permitted, rename 'C:\Users\XXX\AppD
ata\Roaming\npm\node_modules\.staging\rxjs-8d1ee8eb' -> 'C:\Users\XXX\AppDat
a\Roaming\npm\node_modules\@angular\cli\node_modules\rxjs'
npm ERR! at destStatted (C:\Program Files\nodejs\node_modules\npm\lib\instal
l\action\finalize.js:25:7)
npm ERR! at C:\Program Files\nodejs\node_modules\npm\node_modules\graceful-f
s\polyfills.js:264:29
npm ERR! at FSReqWrap.oncomplete (fs.js:123:15)
npm ERR!
npm ERR! Error: EPERM: operation not permitted, rename 'C:\Users\XXX\AppData
\Roaming\npm\node_modules\.staging\rxjs-8d1ee8eb' -> 'C:\Users\XXX\AppData\R
oaming\npm\node_modules\@angular\cli\node_modules\rxjs'
npm ERR! at Error (native) parent: '@angular/cli'
npm ERR!
npm ERR! Please try running this command again as root/Administrator.
npm ERR! Please include the following file with any support request:
npm ERR! D:\angular\NPM\npm-debug.log
npm ERR! code 1
【问题讨论】:
你用 sudo 试过了吗? 我认为 sudo 是 linux 命令...我正在尝试在 Window 7 操作系统中安装它。 尝试以管理员身份打开cmd 这可能是由 Windows Defender 实时保护引起的。我不断地与这个错误作斗争。可能有一种方法可以设置特定的排除项,但我无法弄清楚。每当我想安装/升级 CLI,甚至创建一个新项目时,我都必须暂时禁用实时保护(和云提供的保护)。这太痛苦了,也是唯一让我无法将 CLI 推广给我的团队的原因。 【参考方案1】:通常我会说“与sudo
一起使用”,比如
sudo npm install -g @angular/cli
但由于您使用的是 Windows,请尝试使用提升的命令提示符。 换句话说:以管理员身份启动您的控制台 (CMD) 并再次运行该命令。
如果这不起作用,请键入
npm cache clean
然后运行
npm install -g @angular/cli
再次。
【讨论】:
嗨,我已经以管理员权限在命令提示符中执行所有这些操作...【参考方案2】:Angular 4+项目开发,你应该使用最新的node版本v8.8.9。这样您就不会遇到与任何模块相关的任何错误。
【讨论】:
【参考方案3】:我在尝试安装 @angular/cli 时遇到同样的问题
我发现我安装的 node.js 版本是 6.10。然后我将我的 node.js 升级到 8.10.0 并尝试:
npm install -g @angular/cli works fine.
旧版本的 npm 不支持 Angular 的新功能。
【讨论】:
以上是关于错误:npm install -g @angular/cli的主要内容,如果未能解决你的问题,请参考以下文章