Michael
Michael

Reputation: 14218

Problem installing gems

Why do I get this error every time I type gem install gem_name?

ERROR:  While executing gem ... (Gem::RemoteSourceException)
    HTTP Response 302 fetching http://gems.rubyforge.org/yaml

gem -v = 1.0.1, ruby -v = 1.8.6

Upvotes: 0

Views: 114

Answers (1)

Dutow
Dutow

Reputation: 5668

gem 1.0.1 is very old, you should update it first.

Probably

gem --update system

is also broken, so you should install a new version manually.

And this is probably the same question.

Upvotes: 2

Related Questions