Rails 问题,sqlite3 gem 没有被看到

发布于 2024-10-23 19:23:17 字数 1056 浏览 1 评论 0原文

在 Cygwin 下运行 RoR,我已经安装了 sqlite3 和 sqlite3-ruby gems,但没有找到它们。在development.log 中,我得到:

Status: 500 Internal Server Error
RubyGem version error: sqlite3(1.3.3 not >= 0)

如果我尝试 rake db:migrate 我得到:

$ rake db:migrate
(in /home/projects/sample)
rake aborted!
RubyGem version error: sqlite3(1.3.3 not >= 0)

我已经安装了 gems:

$ gem list
*** LOCAL GEMS ***
actionmailer (2.3.4)
actionpack (2.3.4)
activerecord (2.3.4)
activeresource (2.3.4)
activesupport (2.3.4)
bundler (1.0.10)
cgi_multipart_eof_fix (2.5.0)
daemons (1.1.0)
envy (0.0.1)
fastthread (1.0.1 i386-mswin32)
gem_plugin (0.2.3)
mongrel (1.1.5 x86-mswin32-60)
mysql (2.8.1 x86-mswin32)
rack (1.2.1, 1.0.0)
rails (2.3.4)
rake (0.8.7)
rdoc (3.5.3)
rubysspi (1.3.1)
sqlite3 (1.3.3 x86-mswin32-60)

我也尝试安装和卸载 sqlite3-ruby.gem,但这没有帮助。

Sqlite3 本身工作得很好:

$ sqlite3
SQLite version 3.7.3
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>

Running RoR under Cygwin, I have installed sqlite3 and sqlite3-ruby gems but they aren't being found. In development.log I get:

Status: 500 Internal Server Error
RubyGem version error: sqlite3(1.3.3 not >= 0)

And if I try rake db:migrate I get:

$ rake db:migrate
(in /home/projects/sample)
rake aborted!
RubyGem version error: sqlite3(1.3.3 not >= 0)

I have installed the gems:

$ gem list
*** LOCAL GEMS ***
actionmailer (2.3.4)
actionpack (2.3.4)
activerecord (2.3.4)
activeresource (2.3.4)
activesupport (2.3.4)
bundler (1.0.10)
cgi_multipart_eof_fix (2.5.0)
daemons (1.1.0)
envy (0.0.1)
fastthread (1.0.1 i386-mswin32)
gem_plugin (0.2.3)
mongrel (1.1.5 x86-mswin32-60)
mysql (2.8.1 x86-mswin32)
rack (1.2.1, 1.0.0)
rails (2.3.4)
rake (0.8.7)
rdoc (3.5.3)
rubysspi (1.3.1)
sqlite3 (1.3.3 x86-mswin32-60)

I have tried installing and uninstalling the sqlite3-ruby.gem too but that doesn't help.

Sqlite3 works fine by itself:

$ sqlite3
SQLite version 3.7.3
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

送舟行 2024-10-30 19:23:17

我有一种感觉,您正在使用适用于 Windows 的 sqllite3-ruby gems,

请注意,如果据我所知我是正确的,您将必须使用特定于操作系统/环境的 ruby​​ gems 才能为您工作。在你的情况下,Cygwin 似乎是一个 Linux 类型的环境,因此你为什么不尝试安装适合 Linux 环境的 gems 并检查这是否适合你。

另外,你安装了 sqlite3 DB 并配置了你的 rails_app_name/config/database.yml 文件。您需要在此文件中指定用户名、密码等详细信息。

我使用 MySQL DB 和相关 gem。你似乎也安装了这个..如果 sqlite3 DB 不适合你,只需尝试使用 MySQL DB。您还需要安装此数据库,并再次填写所需的详细信息,以便在database.yml 中使用rails 应用程序配置数据库。

希望这有帮助!

祝你好运!

I have a feeling your are making use of sqllite3-ruby gems for Windows,

Do note, you would have to use OS/environment specific ruby gems for them to work for you, if I am correct to the best of my knowledge. In your case Cygwin seems to be a Linux type environment, thus why don't you try to install gems suiting the Linux environment and check if this does the trick for you..

Also, Have you installed the sqlite3 DB and configured your rails_app_name/config/database.yml file. You need to in this file specify details like username, password etc.

I make use of MySQL DB and related gems. You seem to have that installed too.. if sqlite3 DB doesn't work for you just give a try with MySQL DB. You need to installed this DB also and again fill in the required details to configure your DB with the rails app in your database.yml.

Hope this helps!

Good Luck!

半城柳色半声笛 2024-10-30 19:23:17

我最终下载了 SQLite3 标头(sqlite3.h 和 sqlite3ext.h)并将它们放在目录中,然后

$ gem install sqlite3-ruby-1.2.3-mswin32.gem -- --curdir

您需要第一个空 -- 选项限定符,表示第二组用于特定的 .gem 文件,而不是 gem 命令。

I ended up downloading the SQLite3 headers (sqlite3.h and sqlite3ext.h) and placing them in the directory then

$ gem install sqlite3-ruby-1.2.3-mswin32.gem -- --curdir

You need the first empty -- option qualifiers to signify that the second set is for the specific .gem file, not the gem command.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文