I can install a cygwin package when I first install cygwin, but is there something like:

cyginstall git

kind of like apt-get?

link|improve this question

69% accept rate
feedback

3 Answers

You should be able to use setup.exe w/o the GUI:

setup.exe -q -n -N -d -R c:\cygwin -s http://yourFavoriteMirror \ 
-l c:\localPackageDir -P  <comma-separated list of packages to install>

This is from cygwin mailing list (and follow up post)

link|improve this answer
feedback

This question was already asked here:

http://superuser.com/questions/41093/installing-cygwin-packages-from-the-command-line

Answer:

wget http://apt-cyg.googlecode.com/svn/trunk/apt-cyg
chmod +x apt-cyg
mv apt-cyg /usr/local/bin/
apt-cyg install bc
link|improve this answer
feedback

You can run setup.exe again and add/remove package, as well as the first time ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.