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/
发布于 2013-08-16 14:01:55
在您的目录中创建Gemfile。
Bundler是一位gem经理。你应该指出你所需要的宝石。这个地方是Gemfile。
Article
发布于 2013-08-16 14:26:43
Octopress附带的说明并不清楚,但你的bundle install部分必须在Octopress目录中执行。
发布于 2013-08-16 14:32:47
你不能跳过克隆章鱼的前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在此之后,您应该在bundle install文件夹中,其中有一个Gemfile,现在您可以继续使用octopress
https://stackoverflow.com/questions/18266755
复制相似问题