npm ERR! arg Argument starts with non-ascii dash, this is probably invalid: –g npm ERR! code EINVALIDTAGNAME npm ERR! Invalid tag name "–g" of package "–g": Tags may not have any characters that encodeURIComponent encodes. npm ERR! A complete log of this run can be found in: npm ERR! D:\NVM\node_cache\_logs\2023-06-02T01_42_48_728Z-debug-0.log
时间: 2024-01-26 09:38:09 浏览: 301
npm ERR! code EPERM npm ERR! syscall open npm ERR! path C:\Program Files\nodejs\node_cache\_cacache\
5星 · 资源好评率100%
这个错误是由于你在使用npm命令时,指定了一个无效的标签名“-g”。你需要使用正确的标签名,来对包进行安装或卸载。通常,“-g”是用于全局安装的标签名,如果你想要全局安装一个包,可以使用以下命令:npm install -g <package-name>。你可以查看完整的运行日志,以获取更多关于这个错误的信息。
阅读全文