Rake aborted! no such file to load --bundler/setup Rails 3.1

前端 未结 9 843
慢半拍i
慢半拍i 2021-02-04 23:41

I am very new in Rails. after I created a new rails project.

rails new test project

I ran

rake db:create 

In

9条回答
  •  孤街浪徒
    2021-02-05 00:30

    Run:

    gem install bundler
    bundle install
    bundle exec rake db:create
    

    You might want to learn about Bundler.

    See the link on "Creating new Rails Project".

提交回复
热议问题