Failed to do bundle install

1

Good afternoon, I'm having a little problem when I bundle install :

/usr/local/bin/ruby extconf.rb *** extconf.rb failed *** Could not create Makefile due to some reason, probably lack of necessary libraries and/or headers.  Check the mkmf.log file for more details.  You may need configuration options
...
An error occurred while installing debugger (1.6.8), and Bundler cannot continue. Make sure that 'gem install debugger -v '1.6.8'' succeeds before bundling.

I have tried to gem install debugger -v '1.6.8' , but it still gives me the same error. The ruby version I have is: ruby 2.1.3p242 and the rails version is: rails 4.2.1 . Thank you

    
asked by anonymous 13.04.2015 / 14:44

1 answer

1

The gem debugger is not compatible with your version of Ruby.

Install the gem byebug instead.

    
13.04.2015 / 16:47