ruby on Rails 的 sqlite3 安装位置

发布于 2024-11-13 04:34:21 字数 293 浏览 1 评论 0原文

我正在尝试开始使用 ruby​​ on Rails,每当我尝试使用 Rails 服务器命令启动服务器时,我都会收到 sqlite3 未找到错误。我尝试了以下操作:

which sqlite3

我得到以下信息:

/opt/local/bin/sqlite3

我在想这不应该是

/usr/local/bin/sqlite3

为什么它在我的机器上安装不正确?我该如何修复它?

I am trying to get started with ruby on rails and whenever I try to start the server using rails server command I get the sqlite3 not found error. I tried the following:

which sqlite3

And I got the following:

/opt/local/bin/sqlite3

I am thinking that should it not be

/usr/local/bin/sqlite3

Why is it installed incorrectly on my machine? How can I fix it?

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

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

发布评论

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

评论(1

半城柳色半声笛 2024-11-20 04:34:21

检查gem list的输出。如果 sqlite gem 不在其中,那么您需要安装它。

对于 Rails 3,您需要在 Gemfile 中添加以下内容:

gem 'sqlite'

...然后运行:

bundle install

对于 Rails 2 运行:

gem install sqlite

Check the output of gem list. If the sqlite gem is not in there then you need to install it.

For Rails 3 you need to add the following in your Gemfile:

gem 'sqlite'

... then run:

bundle install

For Rails 2 run:

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