Assuming you have installed ActiveState Perl the following is a guide to getting CPAN's cpan module install tool working on a Windows XP system with Visual Studio.
First up, CPAN absolutely will not run nmake from a path including a space. If you have Visual Studio installed to its default location in .../Program Files/... and you are using NTFS then your best bet is to use System Internals' Junction to create a hard link to the Visual Studio install folder. You can pick Junction up from http://www.sysinternals.com/Utilities/Junction.html. Run it as:
junction c:/vs2003 "C:\Program Files\Microsoft Visual Studio 7"
If you are yet to install Visual Studio then you should seriously consider installing it to a non-default path that doesn't include spaces in the path.
Install cygwin from http://cygwin.com/setup.exe. When the setup promts you to choose a download site you should choose four or so mirrors to help avoid stale mirror syndrome.
During the install you should add the following non-default packages:
Note that you can use the View button to toggle between different package views. "Not Installed" and "Category" are most usefull for this job. Click on "Skip" to select a package for installation.
Open a command window using "Programs|Microsoft Visual Studio 200x|Visual Studio Tools|Visual Studio 200x Command Prompt"2
Append the cygwin bin folder to the search path:
set path=%path%;c:\cygwin\bin
Run CPAN - just type cpan on the command line and hit enter. The AS Perl install proivides a batch file on the path that runs the cpan tool.
The first time cpan is run it wants to go through a configuration process. Mostly using the default options is fine. I'd recommend using "follow" at the "Policy on building prerequisites" prompt however.
The most important thing to check is that the path for nmake is correct and doesn't include spaces. If you have a default VS install then most likely you will need to change the path to use the hard link you created with Junction.
Other than that, just accept the defaults and you are done.
1Oh, there is a gotcha - things go rather pear shaped if you use VS 2005 to build against AS Perl 5.8.7 (815) and earlier builds (and possibly against 5.8.8 when it's available) because the binaries generated by VS 2005 do not play with the VC++ 6 binaries built with an earlier compiler.
2If you use the command line reguarly it is well worth migrating the contents of the batch file invoked by this command into your environment. demerphq has written a script to ease the process - see the update to this node
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Installing CPAN on a Windows system
by rhesa (Vicar) on Feb 16, 2006 at 07:19 UTC | |
|
Re: Installing CPAN on a Windows system
by Steve_p (Priest) on Feb 16, 2006 at 15:27 UTC | |
by Random_Walk (Prior) on May 29, 2008 at 15:43 UTC | |
by SankoR (Prior) on May 29, 2008 at 16:45 UTC | |
| |
|
Re: Installing CPAN on a Windows system
by brian_d_foy (Abbot) on Feb 16, 2006 at 18:13 UTC | |
|
Re: Installing CPAN on a Windows system
by Roy Johnson (Monsignor) on Feb 16, 2006 at 15:16 UTC | |
|
Re: Installing CPAN on a Windows system
by andk (Novice) on Feb 17, 2006 at 04:29 UTC | |
by demerphq (Chancellor) on Feb 17, 2006 at 21:38 UTC | |
by Corion (Patriarch) on Mar 01, 2006 at 23:47 UTC | |
by GrandFather (Saint) on Feb 17, 2006 at 05:38 UTC | |
by Aristotle (Chancellor) on Mar 03, 2006 at 17:03 UTC | |
by Steve_p (Priest) on Feb 17, 2006 at 13:58 UTC | |
| |
| |
|
Re: Installing CPAN on a Windows system
by adamk (Chaplain) on Feb 18, 2006 at 15:19 UTC |