Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need help bootstrapping perl tools

Status
Not open for further replies.

awingnut

Programmer
Feb 24, 2003
759
US
It has become apparent that just installing a version of perl is insufficient. Adding various packages is essential but the methods to do so are dependent on already having them. Many packages don't seem to have a PPM option but instead require nmake. That is fine for Unix but with windows nmake does not exist. CPAN has their quickinstall but again to get quicklinstall I need nmake (if I had nmake I wouldn't need quickinstall) as I cannot find a PPM option for it.

So the question is, under windows, how does one get the tools to install packages without having the tools in the first place? TIA.
 
nmake.exe is a windows program... when you run 'perl makefile.pl' it should download it from microsoft automatically and put it in your perl/bin directory.
I don't have much experience installing packages from cpan this way, but I have done it and have been successful.
the readme file that comes with the package should give instructions.. usually goes like this -

change to the directory containing makefile.pl, then..
c:\>perl makefile.pl
c:\>nmake
 
Please check the FAQ section

Look for misbarbell's tips on PPM, and CPAN

Regards
--Paul

It's important in life to always strike a happy medium, so if you see someone with a crystal ball, and a smile on their face ...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top