Reputation: 11
I am new to the whole ruby rails scene, and I am installing for the first time. I have followed the instructions to a T, including putting everything in the suggested directories. I've been researching this issue for hours and the closest I came to a fix is reinstalling and that did not work.
My issue is, while following the install instructions from railsbridge.org and upon reaching step 2.2, when I try to run bundle install, it keeps stating "The system cannot find the path specified." This worked fine up until this point in the tutorial.
Upvotes: 1
Views: 746
Reputation: 21
I had the same problem. Missing Bundler installation. use
gem install bundler
and try again :)
Upvotes: 2