1

宝石文件:

source "http://rubygems.org"
gem "nokogiri", :git => "git://github.com/tenderlove/nokogiri.git"

当我运行时bundle,出现以下错误:

Fetching git://github.com/tenderlove/nokogiri.git
Unfortunately, a fatal error has occurred. Please see the Bundler troubleshooting documentation at http://bit.ly/bundler-issues. Thanks!
C:/Ruby193/lib/ruby/gems/1.9.1/gems/bundler-1.1.4/lib/bundler/source.rb:592:in ``': No such file or directory - git clone "git://github.com/tenderlove/nokogiri.git" "C:/Ruby193/lib/ruby/gems/1.9.1/cache/bundler/git/nokogiri-d4bf05cb9e65f144f074351e5ebe3a0e44c00952" --bare --no-hardlinks (Errno::ENOENT)

我该如何解决?

它不仅可以用这种宝石重现,还可以用其他宝石重现:黄瓜、水豚

我使用 Windows。

4

2 回答 2

5

这是因为我没有安装 Git。

我安装了 Git 并将其添加到 PATH 系统变量中。bundle在那之后开始工作

于 2012-08-09T15:01:12.363 回答
1

对于其他任何新手,我使用msysgit在 Windows 7 上安装了 Git 。

然后在命令msysgit窗口(MINGW32

谢谢你帮我解决这个安德烈。

于 2012-08-28T01:49:31.273 回答