2016-07-26 7 views
0

Trac 용 플러그인을 설치하려고하는데, 그런 식으로 설치된 패키지에 대한 제거가 없기 때문에 easy_install을 사용하고 싶지 않습니다. pip 설치시 오류가 발생했습니다. [url]

그래서 내가 발행 :

# 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

시도'SVN + https를 설치 PIP : // trac-hacks.org/SVN/accountmanagerplugin'합니다. – edwinksl

답변

1
당신은 계획 svn+https 지정해야합니다

:

# pip install svn+https://trac-hacks.org/svn/accountmanagerplugin/tags/acct_mgr-0.4.4 
관련 문제