尝试安装@ angular / cli时获取权限错误

时间:2017-05-26 10:00:39

标签: node.js npm angular-cli npm-install

我要在我的Ubuntu 16.04计算机上安装@ angular / cli。我的节点版本是 v7.10.0和npm是5.0.0

我一直收到这个错误:

gyp ERR! configure error 
gyp ERR! stack Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/@angular/cli/node_modules/node-sass/build'
gyp ERR! System Linux 4.10.0-21-generic
gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/@angular/cli/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
gyp ERR! cwd /usr/local/lib/node_modules/@angular/cli/node_modules/node-sass
gyp ERR! node -v v7.10.0
gyp ERR! node-gyp -v v3.6.1
gyp ERR! not ok 
Build failed with error code: 1
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: node-sass@4.5.3 (node_modules/@angular/cli/node_modules/node-sass):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: node-sass@4.5.3 postinstall: `node scripts/build.js`
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: Exit status 1

我也尝试了以下命令:

npm cache clean --force
sudo npm install -g @angular/cli

我应该使用 chmod chown 手动尝试更改权限或所有权吗?

1 个答案:

答案 0 :(得分:0)

我有同样的问题。它与默认的npm有关,因为我在PC上安装了几个实例。

目前您正在使用

  

的/ usr / local / bin中/节点

尝试找另一个npm:

  

whereis npm

在我的情况下,我得到了

  

npm:/ usr / bin / npm / usr / local / bin / npm

然后我尝试在我的安装命令中使用另一个npm:

  

sudo / usr / bin / npm install -g @ angular / cli

最后安装它。