ruby on Rails 的 sqlite3 安装位置
我正在尝试开始使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查
gem list
的输出。如果 sqlite gem 不在其中,那么您需要安装它。对于 Rails 3,您需要在
Gemfile
中添加以下内容:...然后运行:
对于 Rails 2 运行:
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
:... then run:
For Rails 2 run: