使用Node@10.9.0导入oracledb@3.0.0时出现mkdir权限错误

时间:2018-10-24 06:44:35

标签: node.js npm oracledb oracledb-npm

当我尝试使用 Node 10.9.0 导入 oracledb@3.0.0 时,我遇到了错误,

oracledb Beginning installation
oracledb Verifying installation
oracledb Continuing installation
oracledb ERR! NJS-054: Binary build/Release/oracledb.node was not installed.
oracledb ERR! Failed to install binary package oracledb-v3.0.0-node-abi64-linux-x64.gz
oracledb ERR! EACCES: permission denied, mkdir 'build'
oracledb ERR! For help see https://oracle.github.io/node-oracledb/INSTALL.html#troubleshooting

由于上述代码似乎是权限问题,因此我也尝试了 sudo npm i mypck@3.2.0 ,但是随后出现以下错误

sudo: npm: command not found

问题:

如何授予创建目录或执行具有 sudo 权限的命令 npm 的权限,我们将不胜感激。

1 个答案:

答案 0 :(得分:3)

在npm install中使用--unsafe-perm=true--allow-root标志。

npm install -g oracledb@3.0.0 --unsafe-perm=true --allow-root

您可以在这里阅读更多内容:https://docs.npmjs.com/getting-started/fixing-npm-permissions