0

Upon trying to start a new Rails App on Linux, I am receiving this error:

I am a newbie to this software. Please help!

Thanks :)

My Error

UPDATE: I ran 'sudo gem install bundler', and it worked but now received this error!

'/usr/bin/ruby2.3: No such file or directory -- /usr/bin/bundle (LoadError)'

My new error

Benjamints
  • 849
  • 1
  • 10
  • 24
  • If you are new, I recommend you find a good guide for RVM or rbenv. Those two will allow you to install Ruby in the user space, so you don't/shouldn't have to use sudo at any time. – Leonel Galán Oct 12 '16 at 17:51

3 Answers3

0

It seems like you dont have bundler gem installed.

Try:

gem install bundler
Ajit Singh
  • 63
  • 8
0

Bundler is missing.

Try the below commands.

[sudo] gem install bundler
bundle install
Jayaprakash
  • 1,407
  • 1
  • 9
  • 19
0

Try stop using sudo in your commands. According to your new capture, you are using sudo with gem install bundler, and maybe that is conflicting with your configuration.

Take this link for reference for sudo usage with gem

https://stackoverflow.com/a/2119413/4870465

Community
  • 1
  • 1
Hugo David Farji
  • 174
  • 2
  • 12