繁体   English   中英

我无法正确安装 Angular CLI

[英]I can't install Angular CLI properly

我一直在寻找解决方案,但我仍然无法在我的计算机上安装 Angular CLI。 我总是出错。 似乎是什么问题? 帮助。

我已经尝试以管理员身份运行 cmd 行,但它仍然不起作用。 我还尝试清除 npm 缓存。

我的 node.js 是最新版本:Node.js v15.5.1。

这是控制台日志错误:

npm ERR! code EPERM
npm ERR! syscall rename
npm ERR! path C:\Program Files (x86)\Nodist\bin\node_modules\@angular\cli
npm ERR! dest C:\Program Files (x86)\Nodist\bin\node_modules\@angular\.cli-gTnE0exE
npm ERR! errno -4048
npm ERR! Error: EPERM: operation not permitted, rename 'C:\Program Files (x86)\Nodist\bin\node_modules\@angular\cli' -> 'C:\Program Files (x86)\Nodist\bin\node_modules\@angular\.cli-gTnE0exE'
npm ERR!  [Error: EPERM: operation not permitted, rename 'C:\Program Files (x86)\Nodist\bin\node_modules\@angular\cli' -> 'C:\Program Files (x86)\Nodist\bin\node_modules\@angular\.cli-gTnE0exE'] {
npm ERR!   errno: -4048,
npm ERR!   code: 'EPERM',
npm ERR!   syscall: 'rename',
npm ERR!   path: 'C:\\Program Files (x86)\\Nodist\\bin\\node_modules\\@angular\\cli',
npm ERR!   dest: 'C:\\Program Files (x86)\\Nodist\\bin\\node_modules\\@angular\\.cli-gTnE0exE'
npm ERR! }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It's possible that the file was already in use (by a text editor or antivirus),
npm ERR! or that you lack permissions to access it.
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator.

我认为您应该执行以下操作; 如果您使用的是 windows,请尝试使用管理员权限运行以下命令,并在基于 linux 的系统上使用 sudo:

npm uninstall -g @angular/cli
npm cache clean --force

这些命令实际上将删除以前的安装,然后检查:

ng --version --> it should throw an error 

重新安装 angular package:

npm install -g @angular/cli

然后再次检查您的版本:

ng --version

要再添加一件事,您可以使用多个版本的节点。 因此,如果您使用的是基于 linux 的计算机。 您可以安装 nvm,并且可以安装多个版本的节点: https://github.com/nvm-sh/nvm - 对于 windows,您可以使用此: Z5E056C500A1C4B6A7110BADE5Z/windows

通过这种方式,您可以检查导致问题的节点版本,或者实际上是 angular 安装的问题。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM