我有一个nodejs项目,运行npm时遇到以下错误:

oracledb ERR! NJS-067: a pre-built node-oracledb binary was not found for Node.js v12.13.0 (NODE_MODULE_VERSION=72) on darwin x64
oracledb ERR! Try compiling node-oracledb source code using https://oracle.github.io/node-oracledb/INSTALL.html#github


我尝试更新package.json以包括“ oracledb”:“ github:oracle / node-oracledb#v4.0.1”,但它继续显示[email protected]安装。我也尝试运行npm uninstall oracledb,但是也导致了同样的错误。

NodeJ v:12.13.0
的Python:2.7.10

最佳答案

寻找任何node_modules / oracledb目录并手动将其删除。 Node.js可能会在目录树中上下移动。

10-06 08:10