简体   繁体   English

npm 安装 sqlite3 错误

[英]npm install sqlite3 error

i am not sure why, but i am having issues while installing any of the packages using npm.我不知道为什么,但我在使用 npm 安装任何软件包时遇到问题。 i tried to install sqlite3 and it gave error as follows:我尝试安装 sqlite3 并给出如下错误:

    naphstor@ubuntu:~$ sudo npm install sqlite3
    [sudo] password for naphstor: 

    > sqlite3@2.0.15 preinstall /home/naphstor/node_modules/sqlite3
    > node-waf clean || true; node-waf configure build

    Nothing to clean (project not configured)
    Setting srcdir to                        : /home/naphstor/node_modules/sqlite3 
    Setting blddir to                        : /home/naphstor/node_modules/sqlite3/build 
    Checking for program g++ or c++          : /usr/bin/g++ 
    Checking for program cpp                 : /usr/bin/cpp 
    Checking for program ar                  : /usr/bin/ar 
    Checking for program ranlib              : /usr/bin/ranlib 
    Checking for g++                         : ok  
    Checking for node path                   : not found 
    Checking for node prefix                 : ok /usr/local 
    Checking for sqlite3                     : not found 
    Checking for library sqlite3             : not found 
    /home/naphstor/node_modules/sqlite3/wscript:29: error: the configuration failed (see             '/home/naphstor/node_modules/sqlite3/build/config.log')                                            
    npm ERR! error installing sqlite3@2.0.15 Error: sqlite3@2.0.15 preinstall: `node-waf        clean || true; node-waf configure build`
    npm ERR! error installing sqlite3@2.0.15 `sh "-c" "node-waf clean || true; node-waf configure build"` failed with 1
    npm ERR! error installing sqlite3@2.0.15     at ChildProcess.<anonymous>  (/usr/local/lib/node_modules/npm/lib/utils/exec.js:49:20)
    npm ERR! error installing sqlite3@2.0.15     at ChildProcess.emit (events.js:70:17)
    npm ERR! error installing sqlite3@2.0.15     at maybeExit (child_process.js:359:16)
    npm ERR! error installing sqlite3@2.0.15     at Process.onexit               (child_process.js:395:5)
    npm ERR! sqlite3@2.0.15 preinstall: `node-waf clean || true; node-waf configure  build`
    npm ERR! `sh "-c" "node-waf clean || true; node-waf configure build"` failed with 1
    npm ERR! 
    npm ERR! Failed at the sqlite3@2.0.15 preinstall script.
    npm ERR! This is most likely a problem with the sqlite3 package,
    npm ERR! not with npm itself.
    npm ERR! Tell the author that this fails on your system:
    npm ERR!     node-waf clean || true; node-waf configure build
    npm ERR! You can get their info via:
    npm ERR!     npm owner ls sqlite3
    npm ERR! There is likely additional logging output above.
    npm ERR! 
    npm ERR! System Linux 3.0.0-12-generic
    npm ERR! command "node" "/usr/local/bin/npm" "install" "sqlite3"
    npm ERR! cwd /home/naphstor
    npm ERR! node -v v0.5.11-pre
    npm ERR! npm -v 1.0.106
    npm ERR! code ELIFECYCLE
    npm ERR! 
    npm ERR! Additional logging details can be found in:
    npm ERR!     /home/naphstor/npm-debug.log
    npm not ok
    naphstor@ubuntu:~$ 

any idea why is it like that.知道为什么会这样。 it shows same kind of error in installing any of the other packages.它在安装任何其他软件包时显示相同类型的错误。

I can do it with a workaround like "git clone git://github.com/developmentseed/node-sqlite3.git" but was wondering why npm gives error while installing any of these packages.我可以使用“git clone git://github.com/developmentseed/node-sqlite3.git”之类的解决方法来做到这一点,但想知道为什么 npm 在安装任何这些软件包时会出错。

This can be fixed by forcing SQLite3 to compile.这可以通过强制 SQLite3 编译来解决。 npm install sqlite3 --build-from-source

Make sure you have these following dependencies installed确保安装了以下依赖项

  1. python-software-properties蟒蛇软件属性
  2. python Python
  3. g++加++
  4. make制作
  5. build-essential构建必不可少的

or run sudo npm install -g node-gyp或运行sudo npm install -g node-gyp

You will find more informations there (SQlite3 section): http://support.ghost.org/troubleshooting/您会在那里找到更多信息(SQlite3 部分): http : //support.ghost.org/troubleshooting/

节点版本可能是问题,因此对于节点 10.x 及更高版本,只需安装 sqlite3@4.1.1,如指定版本

Try updating npm.尝试更新 npm。 I just tested it with the latest version, and it worked.我刚刚用最新版本对其进行了测试,并且有效。

Alternatively, try one of these packages:或者,尝试以下软件包之一:

https://github.com/grumdrig/node-sqlite https://github.com/grumdrig/node-sqlite
https://github.com/orlandov/node-sqlite https://github.com/orlandov/node-sqlite

我也遇到了这个问题,然后我删除了我从 ubuntu repos 下载并安装的node js并从官方 node js 站点下载了源代码并在它再次编译后尝试安装 sqlite 没有问题它工作我建议你更新你的节点和 npm版本也是

It was a permissions problem for me.这对我来说是一个权限问题。 I was seeing this line before the errors:我在错误之前看到这一行:

gyp WARN EACCES current user ("ubuntu") does not have permission to access the dev dir "/root/.cache/node-gyp/14.15.4"

So I did chmod -R 777 /root then npm i sqlite3 .所以我做了chmod -R 777 /root然后npm i sqlite3

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM