rake 数据库:种子问题

发布于 2024-11-30 07:33:31 字数 522 浏览 0 评论 0原文

当我运行 rake db:seed 或 rake db:migrate 时,我在这里看到一个奇怪的问题:

user@ubuntu:~/Desktop/staging/config$ bundle show activeresource
/usr/lib/ruby/gems/1.8/gems/activeresource-3.0.3
user@ubuntu:~/Desktop/staging/config$ rake db:seed
(in /home/rohan/Desktop/staging)
Could not find activesupport-3.0.3 in any of the sources
Try running `bundle install`.
user@ubuntu:~/Desktop/staging/config$ ruby --version
ruby 1.9.2p180 (2011-02-18 revision 30909) [i686-linux]

我不知道该怎么做。任何帮助将不胜感激。作为记录,我正在使用 RVM。

I'm seeing a weird issue here when I run rake db:seed or rake db:migrate:

user@ubuntu:~/Desktop/staging/config$ bundle show activeresource
/usr/lib/ruby/gems/1.8/gems/activeresource-3.0.3
user@ubuntu:~/Desktop/staging/config$ rake db:seed
(in /home/rohan/Desktop/staging)
Could not find activesupport-3.0.3 in any of the sources
Try running `bundle install`.
user@ubuntu:~/Desktop/staging/config$ ruby --version
ruby 1.9.2p180 (2011-02-18 revision 30909) [i686-linux]

I don't know what to do. Any help would be appreciated. For the record, I am using RVM.

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

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

发布评论

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

评论(3

塔塔猫 2024-12-07 07:33:31

运行捆绑安装。这将解决问题。

Run bundle install. This will fix the problem.

眼眸印温柔 2024-12-07 07:33:31

您需要在 gemfile 中引入rails,然后运行bundle install。

gem "rails", 'version'

现在运行捆绑安装

you need to require rails in gemfile then run bundle install.

gem "rails", 'version'

now run bundle install

与君绝 2024-12-07 07:33:31

假设您尝试按照要求运行bundle install,您可能只需要使用:

$ bundle exec rake db:seed

在捆绑包的上下文中运行rake

On the assumption that you tried running bundle install like it asked, you probably just need to use:

$ bundle exec rake db:seed

to run rake in the context of the bundle.

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