简体   繁体   English

'gem install sqlite3' 失败

[英]fail to 'gem install sqlite3'

When I run rails new todo , it appears as follows(related question Make sure that 'gem install ~ ' succeeds before bundling ).当我运行rails new todo ,它显示如下(相关问题确保 'gem install ~ ' 在捆绑之前成功)。

Gem::RemoteFetcher::FetchError: SSL_connect returned=1 errno=0 state=SSLv3 read
server certificate B: certificate verify failed (https://rubygems.org/gems/sqlit
e3-1.3.10-x64-mingw32.gem)
An error occurred while installing sqlite3 (1.3.10), and Bundler cannot
continue.
Make sure that `gem install sqlite3 -v '1.3.10'` succeeds before bundling.

When I run gem install sqlite3 , it appears as follows.当我运行gem install sqlite3 ,它显示如下。

C:\Ruby21-x64>gem install sqlite3
Temporarily enhancing PATH to include DevKit...
Building native extensions.  This could take a while...
ERROR:  Error installing sqlite3:
        ERROR: Failed to build gem native extension.

    C:/Ruby21-x64/bin/ruby.exe extconf.rb
checking for sqlite3.h... no
sqlite3.h is missing. Install SQLite3 from http://www.sqlite.org/ first.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.

Provided configuration options:
        --with-opt-dir
        --without-opt-dir
        --with-opt-include
        --without-opt-include=${opt-dir}/include
        --with-opt-lib
        --without-opt-lib=${opt-dir}/lib
        --with-make-prog
        --without-make-prog
        --srcdir=.
        --curdir
        --ruby=C:/Ruby21-x64/bin/ruby
        --with-sqlite3-dir
        --without-sqlite3-dir
        --with-sqlite3-include
        --without-sqlite3-include=${sqlite3-dir}/include
        --with-sqlite3-lib
        --without-sqlite3-lib=${sqlite3-dir}/lib

extconf failed, exit code 1

Gem files will remain installed in C:/Ruby21-x64/lib/ruby/gems/2.1.0/gems/sqlite
3-1.3.10 for inspection.
Results logged to C:/Ruby21-x64/lib/ruby/gems/2.1.0/extensions/x64-mingw32/2.1.0
/sqlite3-1.3.10/gem_make.out

Following my textbook, I have already downloaded 'sqlite-shell-win32-x86' , made 'c:\\sqlite3' folder , added 'sqlite3.exe' in that folder and added path 'c:\\sqlite3'.按照我的教科书,我已经下载了 'sqlite-shell-win32-x86' ,创建了 'c:\\sqlite3' 文件夹,在该文件夹中添加了 'sqlite3.exe' 并添加了路径 'c:\\sqlite3'。

What should I do?我该怎么办? I can't start RoR...我无法启动 RoR...

Added添加

He says他说

checking for sqlite3.h... no
sqlite3.h is missing.

I found sqlite3.h(this is in the sqlite-amalgamation folder), so I guess what I do next is to put it in the proper folder.我找到了 sqlite3.h(这是在 sqlite-amalgamation 文件夹中),所以我想接下来要做的是将它放在正确的文件夹中。 Where is that?哪里是? I put sqlite3.h in the folder in which ruby.exe is, but he still says sqlite3.h is missing.我将 sqlite3.h 放在 ruby​​.exe 所在的文件夹中,但他仍然说sqlite3.h is missing. . .

You lack the system dependecies that the gem requires.您缺乏 gem 所需的系统依赖项。

sudo apt-get install sqlite3 libsqlite3-dev

http://www.askyb.com/sqlite/installing-sqlite-in-ubuntu/ http://www.askyb.com/sqlite/installing-sqlite-in-ubuntu/

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

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