Go to www.cygwin.com and press the "Install Cygwin now" icon. When you get to the tool that allows you to select what components are installed, you will need to make the following changes to the preselected defaults:
C:\cygwin\bin\rxvt.exe -sl 1000 -e bashThen every click on this icon will bring up a bash shell with 1000 lines of scrolling.
2. If your windows login has spaces,
you will have endless difficulty
because UNIX treats them as command line argument separators.
Since my windows login was "Michael Hines",
I created a c:/cygwin/home/hines directory
and put a .bashrc file in the
c:/cygwin/home/Michael\ Hines directory with the contents
export PATH=/usr/bin:$PATH export HOME=/home/hines export PATH=$HOME/bin:$PATH cd export CVS_RSH=ssh
neuron directory in your home directory,
put the gzipped source files in it, and jump in after them.cd $HOME mkdir neuron mv iv-mm.tar.gz neuron mv nrn-nn.tar.gz neuron cd neuron
tar xzf iv-mm.tar.gz # renaming the new directory to iv makes life simpler later on mv iv-mm iv cd iv ./configure --prefix=`pwd` make make install
cd $HOME/neuron tar xzf nrn-nn.tar.gz # renaming the new directory to nrn makes life simpler later on mv nrn-n.n nrn cd nrn ./configure --prefix=`pwd` make # unlike the UNIX installation, we DO NOT do make install
nrnsetup.exe?nrnsetup.exe file,
then install the installer builder from
http://nsis.sourceforge.net/nsis20b3.exe version.
make mswinIf you have the installer builder, then the process will end with the installer builder asking if you want to test the installer. Otherwise you will be left with all the necessary files in
c:\marshalnrn ,
and you can move this directory and create or reuse your own icons and file properties.