使用 RoR 应用程序创建数据库时出错

发布于 2024-10-19 03:28:44 字数 196 浏览 0 评论 0原文

我在运行 rake db:create 时收到此错误消息

Could not find gem 'sqlite3 (>= 0, runtime)' in any of the gem sources listed in your Gemfile.

对于我应该做什么有什么想法吗?

I get this error message when running rake db:create

Could not find gem 'sqlite3 (>= 0, runtime)' in any of the gem sources listed in your Gemfile.

Any ideas on what I should do?

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

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

发布评论

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

评论(2

巴黎夜雨 2024-10-26 03:28:44
  1. 从 Rails 应用程序的根目录打开 Gemfile

  2. 添加此行 gem ' sqlite3-ruby', :require =>; 'sqlite3'

  3. 运行捆绑安装

  4. 运行rake db:create< /p>

  1. Open Gemfile from the root of your Rails application

  2. Add this line gem 'sqlite3-ruby', :require => 'sqlite3'

  3. run bundle install

  4. run rake db:create

瞳孔里扚悲伤 2024-10-26 03:28:44

我对 Rails 开发完全陌生,但这周我遇到了同样的问题。最终,我替换了行 gem 'sqlite-ruby, :require =>; 'sqlite3'gem 'sqlite3-ruby', '1.2.5', :require => 'sqlite3' (在 Gemfile 中)

我必须这样做,因为我运行的是 Mac OS 10.5.8 而不是 10.6

也许这会有所帮助。

I'm totally new to Rails development, but I had this same problem this week. Eventually, I replaced the line gem 'sqlite-ruby, :require => 'sqlite3' with gem 'sqlite3-ruby', '1.2.5', :require => 'sqlite3' (in the Gemfile)

I had to do this because I'm running Mac OS 10.5.8 rather than 10.6

Maybe that will help.

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