使用Repo下载android源代码时出现致命错误

时间:2013-04-02 14:47:18

标签: git android-source repository

我想下载android源代码。 我按照以下步骤进行了操作,

$ curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
$ mkdir android-source
$ cd android-source
$ repo init -u https://android.googlesource.com/platform/manifest

但是收到错误

**Get https://gerrit.googlesource.com/git-repo
fatal: Unable to find remote helper for 'https'**

我正在使用Ubuntu-10.04,我已经安装了所有必需的软件包,并按照here上提到的所有步骤进行了

任何帮助将不胜感激,

谢谢,Nirav

1 个答案:

答案 0 :(得分:0)

如果你无法使用curl,你可以使用

wget -O - https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo

代替。

顺便说一句,您可以通过运行

来检查您的curl版本是否支持https
curl -V

如果有的话,应该在某处打印“https”。