install modules in winXP

Ask a Question related to PERL Beginners, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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....
    3. 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...
    4. 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...
    5. 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? ...
  3. #2

    Default 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

  4. #3

    Default Re: install modules in winXP

    Shiping Wang wrote:
    >
    > Hello,
    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?
    'cl' is the C language compiler which means that part(s) of the module
    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

  5. #4

    Default 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

  6. #5

    Default RE: 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.
    cl is the name of the Visual C++ compiler. If you don't have that, you
    are out of luck, unfortunately.
    Luke Bakken Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139