我是Ruby on Rails的新手,现在尝试安装ROR。我按照本教程http://blog.sudobits.com/2011/10/27/how-to-install-ruby-on-rails-in-ubuntu-11-10/
安装完成后,gem install rails
创建我的项目rails new myproject
。
这里显示此消息
Your bundle is complete! Use
捆绑show [gemname] to see where a bundled gem is installed.
。
之后我运行bundle install
,显示此错误Could not locate Gemfile
。
请帮助我如何解决这个问题。
答案 0 :(得分:6)
在运行bundle install
之前,请确保您位于项目目录中。
例如,在运行rails new myproject
之后,您需要cd myproject
才能运行bundle install
。