RE: Installing Modules?
by KING,SETH (HP-Boise,ex1) other posts by this author
Aug 19 2003 6:42PM messages near this date
view in the new Beta List Site
Wrong Module Version
|
RE: Installing Modules?
Hi Daren,
You need to get yourself a make program (for Windows use nmake15
http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe
)
Once you have the nmake15.exe, executing it will create 3 files on your
machine (nmake.exe, nmake.err, & a readme). Now you have a way to install
modules on you pc.
To install the Crypt::SSLeay mod, download the tar.gz
http://www.perl.com/CPAN-local/modules/by-module/Crypt/Crypt-SSLeay-0.51.tar
.gz and extract the files to a temp directory. Then from the command line,
move into the temp directory and type the following commands:
perl Makefile.PL
c:\nmake\nmake.exe
c:\nmake\nmake.exe test
c:\nmake\nmake.exe install
c:\nmake\nmake.exe clean
This assumes that you nmake exe is in c:\nmake\, if not change it to match
your system conf.
For the LWP::UserAgent, I haven't found a tar.gz for that so you will need
to use the MCPAN module to install
Download the Bundle::LWP mod for CPAN
http://search.cpan.org/src/GAAS/libwww-perl-5.69/lib/Bundle/LWP.pm to a temp
directory. From the command line, run the following command
perl -MCPAN -e 'install Bundle::LWP'
Hope that helps,
Seth
-----Original Message-----
From: Daren Niedermeier [mailto:daren@[...].com]
Sent: Tuesday, August 19, 2003 7:17 AM
To: ppm@[...].com
Subject: Installing Modules?
There is a shopping cart program out there called Cart IT commerce.
(http://www.cartit.com/products/cartit/system_requirements.asp) In order
for that program to use real time credit card transactions and shipping
calculations, it says that two perl modules need to be installed.
Required Installed PERL Modules:
----------------------------------------------------------------------------
----
LWP::UserAgent
Crypt::SSLeay
Could someone please give me some simple instructions on where I could
download and how I would go about installing these modules? I have never
had to install anything extra with perl. We are using Active State Perl
version 5.8.0 build 806 on a Windows 2000 server box.
Daren
_______________________________________________
PPM mailing list
PPM@[...].com
http://listserv.ActiveState.com/mailman/listinfo/ppm
_______________________________________________
PPM mailing list
PPM@[...].com
http://listserv.ActiveState.com/mailman/listinfo/ppm
|