15

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

cyginstall git

kind of like apt-get?

yazz.com
  • 7,953

3 Answers3

19

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)

13

This question was already asked here. 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
2

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

Gk.
  • 738