2010-10-18 67 views
2

我安裝了RVM,然後用它來安裝ruby-1.9.2,然後使用rubygems安裝rails 3.0。它讓我創建一個新的應用程序,但後來當我更改爲應用程序的根,並嘗試生成一個支架,我得到這個錯誤:RVM,Rails Errors

Could not find gem 'sqlite3-ruby (>= 0, runtime)' in any of the gem sources. 
Try running `bundle install`. 

於是我跑了「包安裝」,一切都顯得安裝罰款,直到它得sqlite3的,紅寶石,給了我這個巨大的錯誤消息:

Installing sqlite3-ruby (1.3.1) with native extensions /home/connor/.rvm/rubies/ruby-1.9.2-p0/lib/ruby/1.9.1/rubygems/installer.rb:483:in `rescue in block in build_extensions': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError) 

/home/connor/.rvm/rubies/ruby-1.9.2-p0/bin/ruby 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=/home/connor/.rvm/rubies/ruby-1.9.2-p0/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 


Gem files will remain installed in /home/connor/.rvm/gems/ruby-1.9.2-p0/gems/sqlite3-ruby-1.3.1 for inspection. 
Results logged to /home/connor/.rvm/gems/ruby-1.9.2-p0/gems/sqlite3-ruby-1.3.1/ext/sqlite3/gem_make.out 
from /home/connor/.rvm/rubies/ruby-1.9.2-p0/lib/ruby/1.9.1/rubygems/installer.rb:486:in `block in build_extensions' 
from /home/connor/.rvm/rubies/ruby-1.9.2-p0/lib/ruby/1.9.1/rubygems/installer.rb:446:in `each' 
from /home/connor/.rvm/rubies/ruby-1.9.2-p0/lib/ruby/1.9.1/rubygems/installer.rb:446:in `build_extensions' 
from /home/connor/.rvm/rubies/ruby-1.9.2-p0/lib/ruby/1.9.1/rubygems/installer.rb:198:in `install' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/source.rb:100:in `install' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/installer.rb:55:in `block in run' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/spec_set.rb:12:in `block in each' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/spec_set.rb:12:in `each' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/spec_set.rb:12:in `each' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/installer.rb:44:in `run' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/installer.rb:8:in `install' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/cli.rb:221:in `install' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/vendor/thor/task.rb:22:in `run' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/vendor/thor/invocation.rb:118:in `invoke_task' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/vendor/thor.rb:246:in `dispatch' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/lib/bundler/vendor/thor/base.rb:389:in `start' 
from /home/connor/.rvm/gems/[email protected]/gems/bundler-1.0.3/bin/bundle:13:in `<top (required)>' 
from /home/connor/.rvm/gems/[email protected]/bin/bundle:19:in `load' 
from /home/connor/.rvm/gems/[email protected]/bin/bundle:19:in `<main>' 

任何人都知道是什麼引起這些錯誤? RVM?

回答

6

不,這不是RVM的錯。這意味着你沒有安裝SQLite3庫。

/home/connor/.rvm/rubies/ruby-1.9.2-p0/bin/ruby 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. 

您需要安裝SQLite3庫和開發頭以編譯和安裝SQLite gem。