I know that there are so many of these threads, and I have looked
through them but since there are so many its so difficult to find the
right solution. I can run gem install bundler but I can’t run bundle
install, it just keeps asking me to gem install bundler. Here is my gem
env
I know that there are so many of these threads, and I have looked
through them but since there are so many its so difficult to find the
right solution. I can run gem install bundler but I can’t run bundle
install, it just keeps asking me to gem install bundler. Here is my gem
env
Post the output from
gem list
Also copy/paste here the output from bundle install.
Also copy/paste here the output from bundle install.
Gonna have to agree, to me it sounds like you installed on
ruby-1.9.3-p327 instead of @global or @gemset_name. I’ve ran into
issues if I haven’t installed into a gemset. Make sure you are either
in @global or in another gemset you create. I actually prefer not to
use @global at all because it mucks up the isolation I use RVM for but
you can do whatever you please.
It seens like creating a gemset will solve your problem.
What I usually do is create a .rvmrc file on the root of my application
with the content: “rvm 1.9.3@gemset_name --create”
so everytime in enter the directory of my application the gemset that I
specified at the .rvmrc file will be loaded.