2

ここでGoogleCodeでホストされているGeventベータ版をインストールしようとしていますが、コマンドを正しく取得できないようです(アーカイブ形式のエラーを検出できません)。GoogleCodeからpipinstallgevent-1.0b4を実行するコマンドは何ですか?

コマンドとエラーは次のとおりです。

(venv)zak$ pip install https://code.google.com/p/gevent/gevent-1.0b4.tar.gz Downloading/unpacking https://code.google.com/p/gevent/gevent-1.0b4.tar.gz HTTP error 404 while getting https://code.google.com/p/gevent/gevent-1.0b4.tar.gz Could not install requirement https://code.google.com/p/gevent/gevent-1.0b4.tar.gz because of error HTTP Error 404: Not Found Could not install requirement https://code.google.com/p/gevent/gevent-1.0b4.tar.gz because of HTTP error HTTP Error 404: Not Found for URL https://code.google.com/p/gevent/gevent-1.0b4.tar.gz

4

2 に答える 2

2

URLが間違っていると、404が返されます(ブラウザでURLにアクセスして確認できます)。

pip install http://gevent.googlecode.com/files/gevent-1.0b4.tar.gz

動作します。しかし、Google Codeのプロジェクトホームページにあるように、geventは現在githubにあります。

っていうことは

pip install https://github.com/downloads/SiteSupport/gevent/gevent-1.0b4.tar.gz
于 2012-09-26T20:07:21.797 に答える
1

試すpip install http://gevent.googlecode.com/files/gevent-1.0b4.tar.gz

于 2012-09-26T19:59:03.940 に答える