0

我正在尝试为 Trac 安装一个插件,并且不想使用easy_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 可以安装吗?

或者是否有一个带有 pip 的标志可以让它与非归档包一起工作?

4

1 回答 1

1

您需要指定方案svn+https

# pip install svn+https://trac-hacks.org/svn/accountmanagerplugin/tags/acct_mgr-0.4.4
于 2016-07-26T13:22:49.150 回答