Getting error in "bundle install mysql" command

I am trying to set the rails to run the application and I am using the instructions from the stack overflow question

but when I try to take the step "bundle install mysql" I get the error "ERROR: 'bundle install' is called with arguments [" mysql "] Usage:" bundle install "

I would like some help ...

+4
source share
1 answer

As @bjhaid pointed out, you type either

bundle install

or

gem install <package>

bundle installdesigned to install all packages listed in Gemfile.

+2
source

All Articles