CygwinターミナルでAndroidをダウンロードする

CygwinターミナルでAndroidをダウンロードする

Windows の Cygwin ターミナルで Android をダウンロードする際に問題が発生しました。ダウンロードには次のガイドを使用します:

 - 1) Download cygwin from http://cygwin.com/install.html.
 - 2) Install cygwin with defaults.In cygwin Select defualt page search

for curl and python and check them to be installed.

 - 3) Then start cygwin.exe

go to your preferred directory (mine is D:/Android/sources/4.0/try2 )
cd d:
cd Android/sources/4.0/try2

 - 4) Run the below instructions one by one
 - i) mkdir bin
 - ii) PATH=/cygdrive/d/Android/sources/4.0/try2/bin:$PATH
 - iii) curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo >
   /cygdrive/e/android-s/bin/repo
 - iv) mkdir source
 - v) cd source
 - vi) repo init -u https://android.googlesource.com/platform/manifest
   -b android-4.0.1_r1

give credentials

 - vii) repo sync

したがって、4-ii ステップまでは正常に動作しますが、4-iii ステップを使用しようとすると、次のエラーが発生します。

-bash: curl: command not found

問題は何ですか? どのように解決しますか?

答え1

インストールを再度実行し、必要なパッケージを選択して、cygwin 用の curl パッケージをインストールする必要があります。

関連情報