我正在尝试使用npm install -g PACKAGE_NAME安装软件包,但它会抛出以下错误。
npm http GET https://registry.npmjs.org/ionic
npm http 304 https://registry.npmjs.org/ionic
npm ERR! Error: EACCES, mkdir '/usr/local/lib/node_modules'
npm ERR! { [Error: EACCES, mkdir '/usr/local/lib/node_modules']
npm ERR! errno: 3,
npm ERR! code: 'EACCES',
npm ERR! path: '/usr/local/lib/node_modules',
npm ERR! fstream_type: 'Directory',
npm ERR! fstream_path: '/usr/local/lib/node_modules/ionic',
npm ERR! fstream_class: 'DirWriter',
npm ERR! fstream_stack:
npm ERR! [ '/usr/lib/nodejs/fstream/lib/writer.js:171:23',
npm ERR! '/usr/lib/nodejs/mkdirp/index.js:37:53',
npm ERR! 'Object.oncomplete (fs.js:107:15)' ] }
npm ERR!
npm ERR! Please try running this command again as root/Administrator.
当我尝试sudo npm install -g PACKAGE_NAME时,它以静默方式执行,但未安装包。
$ sudo npm install -g ionic
npm http GET https://registry.npmjs.org/ionic
npm http 304 https://registry.npmjs.org/ionic
/usr/local/bin/ionic -> /usr/local/lib/node_modules/ionic/bin/ionic
ionic@1.7.13 /usr/local/lib/node_modules/ionic
xarvis@xarvis:~/songhop/self$ ionic
/usr/bin/env: node: No such file or directory
另外如堆栈溢出的答案中所述,我使用sudo chown -R $USER node_modules
在node_module目录中提供写访问权限。
答案 0 :(得分:1)
第一个错误说你不是root。如果要在-g
命令中以用户避免npm
(全局)添加节点模块。
第二个是说找不到node
。在ubuntu中安装nodejs时,您需要执行从nodejs到node
的符号链接:
sudo ln -s /usr/bin/nodejs /usr/bin/node
要测试节点安装,请键入终端node -v
以查看节点版本号。