我刚开始使用ROR,现在我正在安装Spree,以下步骤如下
gem install rails -v 3.1.4
rails new mystore
cd mystore
spree install在此之后,这里显示了这个错误
gemfile spree
gemfile spree_usa_epay
gemfile spree_skrill
run bundle install from "."
Could not find gem 'spree_skrill (>= 0) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems.
precompiling assets
Could not find gem 'spree_skrill (>= 0) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems.发布于 2012-03-21 22:07:16
gem install spree_skrill如果在此之后,您得到的是“无法在这台机器上可用的宝石中找到宝石'spree_usa_epay (>= 0) ruby‘”。
gem install spree_usa_epay在那之后,我再次尝试运行>> spree安装,并且成功了。
发布于 2021-01-18 14:04:27
在我的例子中,我得到了这样的错误:无法找到带有可执行的spree ( gem ::GemNotFoundException)的Gem (>= 0.a)。
然后运行以下命令:
gem install spree -v '>= 0.a'起作用了..。
https://stackoverflow.com/questions/9727237
复制相似问题