我尝试重新安装node.js几次,并试用了不同的版本,我仍然得到同样的错误。我还以管理员身份运行CMD。看起来它没有找到json-schema,我甚至尝试手动安装它,但出现了同样的错误。这是我收到的错误消息:
C:\> npm install -g @angular/cli
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.1.3 (node_modules\@angular\cli\node_modules\fsevents):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: Error: EPERM: operation not permitted, rename 'C:\Users\admin\AppData\Roaming\npm\node_modules\.staging\fsevents-edb66af1\node_modules\asn1' -> 'C:\Users\admin\AppData\Roaming\npm\node_modules\.staging\asn1-98b68b78'
npm ERR! path C:\Users\admin\AppData\Roaming\npm\node_modules\@angular\cli\node_modules\@ngtools\json-schema
npm ERR! code ENOENT
npm ERR! errno -4058
npm ERR! syscall rename
npm ERR! enoent ENOENT: no such file or directory, rename 'C:\Users\admin\AppData\Roaming\npm\node_modules\@angular\cli\node_modules\@ngtools\json-schema' -> 'C:\Users\admin\AppData\Roaming\npm\node_modules\@angular\cli\node_modules\@ngtools\.json-schema.DELETE'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\admin\AppData\Roaming\npm-cache\_logs\2018-03-15T07_42_19_026Z-debug.log
答案 0 :(得分:0)
最好的方法就像你,首先,尝试从你的机器上卸载节点和角度并删除相关文件然后再一次安装它相应它将工作,因为我面临同样的问题。我附加了一些链接,可以帮助我删除角度和节点。
How to completely remove node.js from Windows
用于完全去除角度
npm uninstall -g @ angular / cli
npm cache verify
答案 1 :(得分:0)
你在运行什么版本的npm('npm -v
')?
我建议你至少运行npm版本5.3.0 - 当前版本是5.7.1,但我遇到了一些问题(和其他人一样)在Windows上有一些更高版本的权限行为。
如果您需要安装不同版本的npm,请键入命令npm install -g npm@5.3.0
(或您要安装的任何版本)。