Ask a Question related to PERL Beginners, Design and Development.
-
Shiping Wang #1
install modules in winXP
Hello,
When I try to install modules from CPAN to my Window XP followed by
perl Makefile.PL
nmake
nmake test
nmake install
Most time installation is OK, but sometime I get following message after
"nmake":
'cl' is not recognized as an internal or external command,
operable program or batch file.
NMAKE : fatal error U1077: 'cl' : return code '0x1'
Stop.
Does it mean this module only use for *nix. How can I pass the problem to
continue installation process?
Thanks,
Shiping
Shiping Wang Guest
-
InDesign CS - WinXP Pro - Install Problem
Hi When I try and install InDesign I get a dos box popping up with the error "Program to Big to Fit in Memory" I've googled but haven't managed... -
Install problems with Apache 1.3, PHP4 and WinXP Home
Apache is running fine on my XP box, but I can't seem to get PHP working. I've followed instructions closely at http://www.php.net/install.apache.... -
AI 8 install failure on WinXP
An attempt to install AI 8 on Win XP resulted in failure: Autorun screen came up, but nothing when I selected install 8.0.1. I tried win program... -
what CGI modules should I install?
There is a Perl script that I wrote 1 year ago, then forgot about. Now the server has been upgraded, and I can't figure out what modules to install... -
How do I install DBD modules
If I download DBD modules for DBI off CPAN, what is the directory I should put them in so they can be used by all perl scripts on the system? ... -
Paul Kraus #2
RE: install modules in winXP
Install the activestate version of perl 5.8 and then use there ppm
utitily. It will do all the work for you.
[url]www.activestate.com[/url]
-----Original Message-----
From: Shiping Wang [mailto:shiping@wubios.wustl.edu]
Sent: Tuesday, September 09, 2003 4:32 PM
To: [email]beginners@perl.org[/email]
Subject: install modules in winXP
Hello,
When I try to install modules from CPAN to my Window XP followed by perl
Makefile.PL nmake nmake test nmake install
Most time installation is OK, but sometime I get following message after
"nmake":
'cl' is not recognized as an internal or external command, operable
program or batch file. NMAKE : fatal error U1077: 'cl' : return code
'0x1' Stop.
Does it mean this module only use for *nix. How can I pass the problem
to
continue installation process?
Thanks,
Shiping
--
To unsubscribe, e-mail: [email]beginners-unsubscribe@perl.org[/email]
For additional commands, e-mail: [email]beginners-help@perl.org[/email]
Paul Kraus Guest
-
John W. Krahn #3
Re: install modules in winXP
Shiping Wang wrote:
Hello,>
> Hello,
'cl' is the C language compiler which means that part(s) of the module> When I try to install modules from CPAN to my Window XP followed by
> perl Makefile.PL
> nmake
> nmake test
> nmake install
>
> Most time installation is OK, but sometime I get following message after
> "nmake":
>
> 'cl' is not recognized as an internal or external command,
> operable program or batch file.
> NMAKE : fatal error U1077: 'cl' : return code '0x1'
> Stop.
>
> Does it mean this module only use for *nix. How can I pass the problem to
> continue installation process?
are written in C and need to be compiled. You either have the 'cl'
compiler and it is not in the current path or you don't have it.
Perhaps following Paul's advice will help (I don't know as I don't use
Windows.)
John
--
use Perl;
program
fulfillment
John W. Krahn Guest
-
Shiping Wang #4
RE: install modules in winXP
Hi Paul, Thanks for your info. Normally I do install a module from ppm. If
the module I can't find, I go to: perl -MCPAN -e CPAN::shell -> install
xxxxx. Sometime I get problem list in below. I tried to add CPAN site to
ppm repository then do installation without success - rep add CPAN
[url]http://search.cpan.org[/url]. So what is right way to do it?
Thanks,
Shiping
At 04:32 PM 9/9/2003 -0400, Paul Kraus wrote:>Install the activestate version of perl 5.8 and then use there ppm
>utitily. It will do all the work for you.
>
>
>[url]www.activestate.com[/url]
>
>-----Original Message-----
>From: Shiping Wang [mailto:shiping@wubios.wustl.edu]
>Sent: Tuesday, September 09, 2003 4:32 PM
>To: [email]beginners@perl.org[/email]
>Subject: install modules in winXP
>
>
>Hello,
>
>When I try to install modules from CPAN to my Window XP followed by perl
>Makefile.PL nmake nmake test nmake install
>
>Most time installation is OK, but sometime I get following message after
>
>"nmake":
>
>'cl' is not recognized as an internal or external command, operable
>program or batch file. NMAKE : fatal error U1077: 'cl' : return code
>'0x1' Stop.
>
>Does it mean this module only use for *nix. How can I pass the problem
>to
>continue installation process?
>
>Thanks,
>
>Shiping
>
>
>
>--
>To unsubscribe, e-mail: [email]beginners-unsubscribe@perl.org[/email]
>For additional commands, e-mail: [email]beginners-help@perl.org[/email]
>
>
>--
>To unsubscribe, e-mail: [email]beginners-unsubscribe@perl.org[/email]
>For additional commands, e-mail: [email]beginners-help@perl.org[/email]
Shiping Wang Guest
-
Luke Bakken #5
RE: install modules in winXP
> >Hello,
cl is the name of the Visual C++ compiler. If you don't have that, you> followed by perl> >
> >When I try to install modules from CPAN to my Window XP> message after> >Makefile.PL nmake nmake test nmake install
> >
> >Most time installation is OK, but sometime I get following> >
> >"nmake":
> >
> >'cl' is not recognized as an internal or external command, operable
> >program or batch file. NMAKE : fatal error U1077: 'cl' : return code
> >'0x1' Stop.
are out of luck, unfortunately.
Luke Bakken Guest



Reply With Quote

