Как запустить репо андроид на CentOS? - PullRequest
2 голосов
/ 18 августа 2011

Я пытаюсь запустить репо с командой repo init -u https://android.googlesource.com/platform/manifest после того, как я установил репо на CentOS.Но ошибка происходит так:

File "/root/bin/repo", line 603, in 
 main(sys.argv[1:])
 File "/root/bin/repo", line 570, in main
_Init(args)
File "/root/bin/repo", line 184, in _Init
_CheckGitVersion()
File "/root/bin/repo", line 213, in _CheckGitVersion
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE)
File "/usr/lib/python2.4/subprocess.py", line 550, in __init__
errread, errwrite)
File "/usr/lib/python2.4/subprocess.py", line 996, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory

Есть идеи?

1 Ответ

0 голосов
/ 04 января 2012

Попробуйте скомпилировать и переустановить git from, команда должна быть git not repo

yum -y install zlib-devel openssl-devel perl cpio expat-devel gettext-devel autoconf curl curl-devel gcc
ldconfig

wget  http://www.codemonkey.org.uk/projects/git-snapshots/git/git-latest.tar.gz
tar zxvf git-latest.tar.gz
cd git-<date>
make configure
./configure --prefix=/usr
make
make install

После установки запустите git clone https://android.googlesource.com/platform/manifest.

Я только что сделалклон успешно:

xxx@xxx:~/temp$ git clone https://android.googlesource.com/platform/manifest
Cloning into manifest...
remote: Counting objects: 261, done
remote: Finding sources: 100% (47/47)
remote: Total 261 (delta 41), reused 261 (delta 41)
Receiving objects: 100% (261/261), 117.65 KiB | 56 KiB/s, done.
Resolving deltas: 100% (41/41), done.

xxx@xxx:~/temp/manifest$ git remote -v
origin  https://android.googlesource.com/platform/manifest (fetch)
origin  https://android.googlesource.com/platform/manifest (push)
...