Shion  Yamaguchi
Shion Yamaguchi

Reputation: 601

Could not bundle install because of 'eventmachine 1.0.3'

$ bundle install

Errno::ENOENT: No such file or directory @ rb_sysopen - /Users/Sean/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/eventmachine-1.0.3/ext/gem_make.out

An error occurred while installing eventmachine (1.0.3), and Bundler cannot
continue.
Make sure that `gem install eventmachine -v '1.0.3'` succeeds before bundling.

$ gem list

eventmachine (1.0.3 x86-mingw32)

$ gem build eventmachine -v 1.0.3

ERROR:  While executing gem ... (Gem::CommandLineError)
Too many gem names (eventmachine, 1.0.3); please specify only one

Upvotes: 17

Views: 8801

Answers (3)

techdreams
techdreams

Reputation: 5585

I had a similar issue with eventmachine -v '1.0.4' and i resolved it like this.

gem install eventmachine -v '1.0.4'  -- --with-cppflags=-I/usr/local/opt/openssl/include

Upvotes: 3

Aathi
Aathi

Reputation: 3224

  • bundle update
  • bundle install Hope this will work.

Upvotes: 8

Andrey
Andrey

Reputation: 513

Try to edit Gemfile.lock and change eventmachive version from 1.0.3 to 1.0.4. This works for me.

Upvotes: 39

Related Questions