0

我已经安装了 ruby​​193 并通过命令提示符安装了 rails(我还安装了 DevKit)。但是,每当我尝试命令时:

rails server

我收到此错误:

←[31mCould not find gem 'jquery-rails (>= 0) x86-mingw32' in the gems available
on this machine.←[0m
←[33mRun `bundle install` to install missing gems.←[0m

我尝试了捆绑安装,但在尝试安装 json gem 时出现错误。有什么建议么?

4

2 回答 2

0

确保在您的 Gemfile 中包含正确的 gem(没有拼写错误等)

于 2012-04-13T18:20:48.903 回答
0

看起来你在 Windows 上。

Gemfile通过从( gem install gem_to_install)手动安装我的 gem,我在 Windows 上解决了同样的问题。在成功安装了一个特定的 gem 之后,我跑去bundle check看看我还需要安装什么。这样,在安装了几个 gem 之后,我bundle check再次运行并看到了输出The Gemfile's dependencies are satisfied

然后服务器启动。我希望你也一样!

PS您可以一次安装几个gem gem install gem1 gem2:.

于 2012-04-13T18:24:34.283 回答