我正在学习 Ruby on Rails,并按照 Ryan Bigg 的博客和 Agile Wed Development 书中的 RVM 和 Rails 安装。这以前在我家里的电脑上工作过,但在工作中它给了我错误:
depot$ rails -v
Could not find gem 'sqlite3 (>= 0) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems.
我正在尝试生成一个脚手架,但这就是我得到的:
depot$ rails generate scaffold Product \ title:string description:text image_url:text price:decimal
Could not find gem 'sqlite3 (>= 0) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems.
我安装了 sqlite3,RVM 1.9.2-p320,并在 Ubuntu 11.04 上运行。
任何想法可能导致此问题以及如何解决?