6

gemcutter.org にある thinking sphinx gem をインストールしようとしています。

コマンドを実行すると

gem sources -a http://gemcutter.org

エラーが発生します:

Error fetching http://gemcutter.org:
bad response Not Found 404 (http://gemcutter.org/specs.4.8)

上記の URL をhttp://gemcutter.org.specs.4.8.gzに変更すると、ファイルが見つかります。rubygems に .gz 拡張子でダウンロードするように指示するにはどうすればよいですか?

4

3 に答える 3

11

一時的なGemcutter障害のようです。それは私にはうまくいきます。

最新のRubyGemsバージョンを実行していることを確認し、最新のgemcuttergemをインストールします。

$ gem install gemcutter --source http://gemcutter.org

gemcutter GEMを使用して、gem tumbleと入力し、Gemcutterをソースとして追加します。

$ gem tumble

編集。本当に古いバージョンのRubyGemsを使用していることに気づきました。最初にRubyGemsを更新します。

$ gem update --system

更新するものが何もないと表示された場合は、バグのあるバージョンがあります(RubyGems 1.2の自己更新はバグがありました)。次のコマンドでアップグレードします。

$ gem install rubygems-update 
$ update_rubygems

次に、ソースを追加します。

于 2009-11-08T16:57:22.743 に答える
1

どのバージョンのRubygemsを実行していますか(gem --version)?1.3.5未満の場合は、Rubygemsを更新して再試行することをお勧めします。(gem update --system

于 2009-11-08T15:10:09.620 に答える
-1

これは、定義された次のソースで機能しています。

http://gems.rubyforge.org/
http://gems.github.com

私が言ったように、これは私のために働いています:

gem install thinking-sphinx \
>  --source http://gemcutter.org
If you're upgrading, you should read this:
http://freelancing-god.github.com/ts/en/upgrading.html

Successfully installed thinking-sphinx-1.3.2
Successfully installed activesupport-2.3.4
2 gems installed
Installing ri documentation for thinking-sphinx-1.3.2...
Installing ri documentation for activesupport-2.3.4...
于 2009-11-08T14:35:09.010 に答える