0
MacBook-Air:~ bdeely$ gem install bundler
Successfully installed bundler-1.3.5
1 gem installed
Installing ri documentation for bundler-1.3.5...
Installing RDoc documentation for bundler-1.3.5...
MacBook-Air:~ bdeely$ rbenv rehash
MacBook-Air:~ bdeely$ bundle install
Bundler::GemfileNotFound

即使在我成功安装了 bundler 之后,我仍然会收到此错误“Bundler::GemfileNotFound”。

有谁知道会发生什么?

作为参考,我遵循这里的指示:http: //octopress.org/docs/setup/

4

3 回答 3

0

您不能跳过克隆 octopress 的前 3 步:

git clone git://github.com/imathis/octopress.git octopress
cd octopress    # If you use RVM, You'll be asked if you trust the .rvmrc file (say yes).
ruby --version  # Should report Ruby 1.9.3

之后,您应该在 octopress 文件夹中,其中有一个Gemfile,现在您可以继续bundle install

于 2013-08-16T06:32:46.583 回答
0

Gemfile在您的目录中创建。

Bundler 是一个 gem 管理器。你应该指出你需要哪些宝石。这个地方是Gemfile

文章

于 2013-08-16T06:01:55.223 回答
0

Octopress 附带的说明不清楚,但bundle install必须从 Octopress 目录中执行的部分。

于 2013-08-16T06:26:42.727 回答