Rails - 安装 Spree 时出现问题

发布于 2024-10-06 08:00:46 字数 630 浏览 1 评论 0原文

我在 Rails 应用程序中安装 Spree 时遇到问题。

当我运行 gem 'spree' 时 (按照 http://spreecommerce.com/documentation/getting_started.html 上的说明)

我收到以下错误:

ERROR:  While executing gem ... (RuntimeError)
    Unknown command spree

我安装了以下 Spree gem:

gem list spree

*** LOCAL GEMS ***

spree (0.30.1)
spree_api (0.30.1)
spree_auth (0.30.1)
spree_core (0.30.1)
spree_dash (0.30.1)
spree_promo (0.30.1)
spree_sample (0.30.1)

当我安装我使用的 Spree gem 时:

sudo gem install spree

感谢您的帮助。

I'm having a problem installing Spree in a Rails app.

when I run gem 'spree'
(as per the instructions on http://spreecommerce.com/documentation/getting_started.html)

I get the following error:

ERROR:  While executing gem ... (RuntimeError)
    Unknown command spree

I have the following Spree gems installed:

gem list spree

*** LOCAL GEMS ***

spree (0.30.1)
spree_api (0.30.1)
spree_auth (0.30.1)
spree_core (0.30.1)
spree_dash (0.30.1)
spree_promo (0.30.1)
spree_sample (0.30.1)

when I installed the Spree gem I used:

sudo gem install spree

thanks for any help.

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

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

发布评论

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

评论(2

神仙妹妹 2024-10-13 08:00:46

说明实际上说将 gem 'spree' 添加到您的 Gemfile (而不是将其作为命令执行):

将 Spree 宝石添加到您的 Gemfile 中:

宝石'狂欢','〜> 4.1'
gem 'spree_auth_devise', '~> 4.2'
gem 'spree_gateway', '~>; 3.9'

The instructions actually say to add gem 'spree' to your Gemfile (and not execute it as a command):

Add Spree gems to your Gemfile:

gem 'spree', '~> 4.1'
gem 'spree_auth_devise', '~> 4.2'
gem 'spree_gateway', '~> 3.9'
新一帅帅 2024-10-13 08:00:46

Spree gem 安装说明:https://gist.github.com/kany/6334724

Spree gem install instructions: https://gist.github.com/kany/6334724

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