2016-07-26 17 views
0

Tracのプラグインをインストールしようとしていますが、インストールされているパッケージのアンインストールがないので、easy_installを使用しません。 pip installでエラーが発生しました

は、だから私は、発行:

# pip install https://trac-hacks.org/svn/accountmanagerplugin/tags/acct_mgr-0.4.4 

そして、これが起こった:

Collecting https://trac-hacks.org/svn/accountmanagerplugin/tags/acct_mgr-0.4.4 
    Using cached https://trac-hacks.org/svn/accountmanagerplugin/tags/acct_mgr-0.4.4 
    Cannot unpack file /tmp/pip-fOSusX-unpack/acct_mgr-0.4.4 (downloaded from /tmp/pip-B6tUyR-build, content-type: text/html; charset=UTF-8); cannot detect archive format 
Cannot determine archive format of /tmp/pip-B6tUyR-build 

私はhttps://trac-hacks.org/svn/accountmanagerplugin/tags/acct_mgr-0.4.4/を閲覧

は、私はいくつかのアンパック、サーバー上のファイルではなくアーカイブを見ています。

これらのファイルをすべてダウンロードしてtar.gzなどにアーカイブし、インストールすることができますか?

または、アーカイブされていないパッケージで動作させるpipがあるのですか?

+0

を。 – edwinksl

答えて

1

あなたはスキームsvn+https指定する必要があります:// trac-hacks.org/SVN/accountmanagerplugin`:PIPは、インストールのsvn + HTTPS `試し

# pip install svn+https://trac-hacks.org/svn/accountmanagerplugin/tags/acct_mgr-0.4.4 
関連する問題