paladiy
paladiy

Reputation: 9

rvm and gem install issue

When I try to install gems with RVM I get this error:

gem install rake 
ERROR:  While executing gem ... (Errno::ENOENT)
    No such file or directory - /Users/paladiy/.rvm/gems/ruby-1.8.6-p399/cache/rake-0.8.7.gem

And also when I call gem list I get an empty list.

How can I install gems in this situation?

Upvotes: 2

Views: 647

Answers (1)

Michael Baker
Michael Baker

Reputation: 11

mkdir ~/.rvm/gems/cache

Upvotes: 1

Related Questions