
How to obtain and install the Spreadsheet::WriteExcel module
------------------------------------------------------------

The latest version of the module will always be available at CPAN:
    http://search.cpan.org/search?dist=Spreadsheet-WriteExcel

The module can be installed using the standard Perl procedure:

    perl Makefile.PL
    make
    make test
    make install    # You may need to be root
    make clean      # or make realclean

Windows users without a working "make" can get nmake from:
    ftp://ftp.microsoft.com/Softlib/MSLFILES/nmake15.exe

ActivePerl users can use PPM as follows:

    C:\> ppm
    PPM> set repository tmp http://homepage.eircom.net/~jmcnamara/perl
    PPM> install Spreadsheet-WriteExcel
    PPM> quit
    C:\>
