淘先锋技术网

首页 1 2 3 4 5 6 7

使用npm install -g命令时报错的解决

最近在Ubuntu上安装了node.js和npm,但是使用npm install -g cnpm --registry=https://registry.npm.taobao.org 命令添加阿里云的npm时镜像时一直报如下错误:

npm ERR! Unexpected end of JSON input while parsing near '...{"node":">=4.2.3"},"_'

npm ERR! A complete log of this run can be found in:
npm ERR! /home/xxx/.npm/_logs/--T15_37_32_946Z-debug.log

在网上查询了一下,好多人给的解决方案是使用 npm cache clean --force 清理cache后再安装,但是我试了之后无效。

突然想起来刚安装好nodejs测试的时候,使用 npm install xxx 类似命令的时候是ok的,所以我想是不是加了 -g 全局安装是需要提升权限才行,因此我试了一下 sudo npm install -g cnpm --registry=https://registry.npm.taobao.org 命令,果然安装成功,然后试了其他几个 npm install -g xxx 命令,在没有加 sudo 时都失败了,因此这应该是权限的问题,要是在windows下遇到该类问题,可以尝试使用管理员权限打开cmd后再试试。