sqlite3-ruby安装过程中出现以下错误:

Building native extensions.  This could take a while...
ERROR:  Error installing sqlite3-ruby:
    ERROR: Failed to build gem native extension.

/usr/bin/ruby1.8 extconf.rb
checking for sqlite3.h... no
sqlite3.h is missing. Try 'port install sqlite3 +universal' or 'yum install sqlite3-devel'
*** 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=/usr/bin/ruby1.8
    --with-sqlite3-dir
    --without-sqlite3-dir
    --with-sqlite3-include
    --without-sqlite3-include=${sqlite3-dir}/include
    --with-sqlite3-lib
    --without-sqlite3-lib=${sqlite3-dir}/lib


Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/sqlite3-ruby-1.3.1 for inspection.
Results logged to /usr/lib/ruby/gems/1.8/gems/sqlite3-ruby-1.3.1/ext/sqlite3/gem_make.out

Sqlite3.h位于/usr/include/中

sudo gem install sqlite3-ruby --without-sqlite3-include=/usr/include

不工作


ERROR:  While executing gem ... (OptionParser::InvalidOption)
    invalid option: --without-sqlite3-include=/usr/include

Ubuntu 10.04


当前回答

对我来说,这个问题通过获得mkmf解决了,它在ruby1.8-dev中。

sudo apt-get install ruby1.8-dev

多亏了mental alized。

其他回答

您已经破坏了RVM版本。Ubuntu对RVM做了一些事情,产生了很多错误,目前唯一安全的修复方法是:sudo apt-get——purge remove ruby-rvm sudo rm -rf /usr/share/ruby…如果没有帮助,那么重新启动你的计算机。install RVM: \curl -L https://get.rvm.io | bash -s stable——ruby——autolibs=enable——auto-dotfiles如果你发现你需要一些手把手的帮助,可以看看在Ubuntu 12.04上安装ruby,其中给出了更多的说明

这和我几周前遇到的问题一模一样。我发现我需要从SQLite下载页面下载最新的头文件/库。试试吧,希望这对你有帮助!

忘记一切,做这个,

run

yum install ruby-devel sqlite sqlite-devel ruby-rdoc
yum install make gcc
gem install sqlite3-ruby
bundle install

这是针对rhel的,在ubuntu上运行同样的程序。

上面提到的解决方案都不适合我,即使在安装了ruby2.5-dev和libsqlite3-dev之后。然后尝试使用PostgreSql代替sqlite。效果很好。在创建rails项目时使用PostgreSql而不是sqlite使用此命令。

rails [_VERSION_] new project_name -d postgresql

如果你想使用MySql,请使用MySql而不是postgresql。

rails [_VERSION_] new project_name -d mysql

否则,您可以尝试不使用sqlite。

bundle install --without sqlite

解决方案是添加——来将配置参数与gem参数分开。

而不是

sudo gem install sqlite3-ruby --without-sqlite3-include=/usr/include

尝试一下,在一行中,确保在最后一个gem参数之后和configure参数之前:

sudo gem install sqlite3 --
--with-sqlite3-lib=/somewhere/local/lib
--with-sqlite3-include=/somewhere/local/include

这应该会让你避免这个错误:

ERROR:  While executing gem ... (OptionParser::InvalidOption)
    invalid option: --without-sqlite3-include=/usr/include