1

bootstrapper.txt からインストールしようとしているとき

$ pip install -r bootstrapper.txt

次に、エラーのある次のトレースバックがあります。

Downloading/unpacking python-keystoneclient==0.1.1 (from -r http://git.ged.ru/ged-thrift-server.git/blob_plain/HEAD:/requirements.txt (line 49))
    Downloading python-keystoneclient-0.1.1.tar.gz (54Kb): 54Kb downloaded
    Running setup.py egg_info for package python-keystoneclient

    warning: no files found matching 'python-keystoneclient'
Downloading/unpacking kazoo==0.2 (from -r http://git.ged.ru/ged-thrift-server.git/blob_plain/HEAD:/requirements.txt (line 50))
    Downloading kazoo-0.2.tar.gz (46Kb): 46Kb downloaded
    Running setup.py egg_info for package kazoo

    warning: no previously-included files matching '*pyc' found anywhere in distribution
    warning: no previously-included files matching '*pyo' found anywhere in distribution
Downloading/unpacking Sphinx==1.1.3 (from -r http://git.ged.ru/ged-thrift-server.git/blob_plain/HEAD:/requirements.txt (line 53))
    Downloading Sphinx-1.1.3.tar.gz (2.6Mb): 2.6Mb downloaded
    Running setup.py egg_info for package Sphinx

    no previously-included directories found matching 'doc/_build'
Obtaining pylib from git+ssh://git@git.ged.ru/pylib.git@a1f66e8dc124165e89fc76dd6f2bf86ccd0527e7#egg=pylib-dev (from -r http://git.ged.ru/ged-thrift-server.git/blob_plain/HEAD:/requirements.txt (line 56))
    Cloning ssh://git@git.ged.ru/pylib.git (to a1f66e8dc124165e89fc76dd6f2bf86ccd0527e7) to ./src/pylib
    Complete output from command /usr/bin/git rev-parse origin/HEAD:
fatal: ambiguous argument 'origin/HEAD': unknown revision or path not in the working tree.

Use '--' to separate paths from revisions

origin/HEAD

----------------------------------------
Command /usr/bin/git rev-parse origin/HEAD failed with error code 128
Storing complete log in /home/ks/.pip/pip.log

http://dumpz.org/246888/ - これはトレースバックです (/home/ks/.pip/pip.log から)。

そして、私のピップバージョンは次のとおりです。

pip 1.0.2 from /home/ks/python/ged/converters/prosto/lib/python2.7/site-packages/pip-1.0.2-py2.7.egg (python 2.7)

更新:

それでも、1.1に更新した後、同じエラーが発生します..

これを解決するにはどうすればよいですか?

4

2 に答える 2

2

color.ui の git config 設定は何ですか?

git config --get color.ui

私は「常に」に設定されていましたが、これと同じエラーが発生しました。

「true」に変更すると、

git config --global color.ui true

私の場合、このエラーを修正しました。

http://git-scm.com/book/en/Customizing-Git-Git-Configuration#Colors-in-Git

于 2013-03-20T20:34:28.447 に答える