Module installation issues.

2011-12-27 Thread Sean Murphy
Hi All. I am using Perl5.12 under Lion. I am finding that I cannot install term::screen or Cursres. I get a pile of compiling errors. So what modules should I use to clear the screen in Perl under MAC Lion? On this topic. I am trying to build a menu. I was wondering how difficult is it to

RE: Perl Module Installation

2006-08-24 Thread Ted Zeng
Subject: Re: Perl Module Installation Thanks to everyone for their suggestions. I ran the 'perl -MCPAN -e shell' and it told me to update the module which I did. So I now have v1.7601. However, when trying to run 'install DBI', it piled a whole load of stuff into the terminal window which

Re: Perl Module Installation

2006-08-24 Thread Daniel T. Staal
On Thu, August 24, 2006 12:00 pm, Moisés Chicharro said: Thanks to everyone for their suggestions. I ran the 'perl -MCPAN -e shell' and it told me to update the module which I did. So I now have v1.7601. However, when trying to run 'install DBI', it piled a whole load of stuff into the

Re: Perl Module Installation

2006-08-24 Thread David Cantrell
On Thu, Aug 24, 2006 at 05:00:56PM +0100, Mois?s Chicharro wrote: However, when trying to run 'install DBI', it piled a whole load of stuff into the terminal window which ended with this below ( the NOT OK bit is worrying me )... --- test.pl done /usr/bin/make test -- OK

Re: Perl Module Installation

2006-08-24 Thread Moisés Chicharro
Thanks to everyone for their suggestions. I ran the 'perl -MCPAN -e shell' and it told me to update the module which I did. So I now have v1.7601. However, when trying to run 'install DBI', it piled a whole load of stuff into the terminal window which ended with this below ( the NOT OK

Re: Perl Module Installation

2006-08-24 Thread Moisés Chicharro
Chicharro [mailto:[EMAIL PROTECTED] Sent: Thursday, August 24, 2006 9:01 AM To: macosx@perl.org Subject: Re: Perl Module Installation Thanks to everyone for their suggestions. I ran the 'perl -MCPAN -e shell' and it told me to update the module which I did. So I now have v1.7601. However, when

Re: Perl Module Installation

2006-08-24 Thread Moisés Chicharro
Sorry, maybe my phrasing was misleading. Obviously I read the error and understood what Permission Denied means but having checked that my account was admin and this being the first module I have ever installed I was not sure what to do to get access. Rather that writing Does that make any

Perl Module Installation in $HOME

2006-08-24 Thread Doug McNutt
At 17:03 +0100 8/24/06, David Cantrell wrote: Run the CPAN shell as root as all will be well. Idonwannadodat! Although I have root privileges on all machines around here there are still two of use who install things and I much prefer NOT to step on the War Department's toes. She's the one who

Re: Perl Module Installation in $HOME

2006-08-24 Thread John Delacour
At 11:32 am -0600 24/8/06, Doug McNutt wrote: At 17:03 +0100 8/24/06, David Cantrell wrote: Run the CPAN shell as root as all will be well. Idonwannadodat! ...The result is that I can compile and install without being root. My stuff does not get any chance to screw up something like a

Re: Perl Module Installation in $HOME

2006-08-24 Thread Daniel T. Staal
On Thu, August 24, 2006 2:39 pm, John Delacour said: I have never run the CPAN shell as root and I don't see what problems you're referring to. I just do 'sudo cpan' and everything is installed where it should go. Eremita:~ jd$ sudo cpan That's running it as root, via sudo. I don't think

Re: Perl Module Installation in $HOME

2006-08-24 Thread Doug McNutt
At 19:39 +0100 8/24/06, John Delacour wrote: All tests successful, 1 subtest skipped. Files=18, Tests=503, 3 wallclock secs ( 1.75 cusr + 0.50 csys = 2.25 CPU) /usr/bin/make test -- OK Running make install Installing /usr/local/lib/perl5/5.8.8/CGI.pm Installing

Re: Perl Module Installation in $HOME

2006-08-24 Thread Joel Rees
I have never run the CPAN shell as root I beg to disagree ... and I don't see what problems you're referring to. I just do 'sudo cpan' unless, of course, you actually do it as something like sudo -u myuser cpan

Re: Perl Module Installation in $HOME

2006-08-24 Thread Packy Anderson
On Aug 24, 2006, at 5:04 PM, Doug McNutt wrote: I guess I wasn't clear. I want the modules installed in my $HOME directory so that they won't 1) Get lost when a newer OS gets installed - especially with Linux. 2) Get in the way of someone else's, the main geek - my wife's, idea of what

Re: Perl Module Installation

2006-08-24 Thread Jeff Lowrey
I much prefer telling the System Administrators to install the Perl modules I need, wherever they choose as long as I can access them. Then I can conveniently forget that I know how to spell CPAN. -jeff lowrey

Re: Perl Module Installation

2006-08-24 Thread Michael Barto
MacOSX has the modules installed in "Library/Perl/darwin-thread-multi-2level". Since my development is to use #!/usr/bin/perl, this is the default library location and is where I have installed DBI.pm This output should tell you what happens on MacOSX (my version is 10.4.7) with perl perl -V

Perl Module Installation

2006-08-23 Thread Moisés Chicharro
Hi All, Can anyone point me to a decent tutorial for installing perl modules. The one I have downloaded is DBI-1.52.tar.gz I am running OS X 10.4.7 and have never installed a perl module before. I have found various pages on the net but I don't want to mess things up so would like to make

Re: Perl Module Installation

2006-08-23 Thread Daniel T. Staal
On Wed, August 23, 2006 12:27 pm, Moisés Chicharro said: Hi All, Can anyone point me to a decent tutorial for installing perl modules. The one I have downloaded is DBI-1.52.tar.gz I am running OS X 10.4.7 and have never installed a perl module before. I have found various pages on the net

Re: Perl Module Installation

2006-08-23 Thread Michael Barto
If you have downloaded the module instead of using CPAN, look at the file "INSTALL" in the module. If should tell you what to do: Typically: #./configuration #make #make check = VERY IMPORTANT!! #make install But using CPAN is better. There are other issues in the MacOS X for manual

Re: Perl Module Installation

2006-08-23 Thread Paul McCann
Michael Barto wrote: If you have downloaded the module instead of using CPAN, look at the file INSTALL in the module. If should tell you what to do: #./configuration #make #make check = VERY IMPORTANT!! #make install Hmm, doesn't look very typical!! Most perl modules don't have an

Re: Module Installation

2004-06-02 Thread John Horner
LD_RUN_PATH= MACOSX_DEPLOYMENT_TARGET=10.3 cc -bundle -undefined dynamic_lookup -L/usr/local/lib Parser.o -o blib/arch/auto/HTML/Parser/Parser.bundle Exactly right - that is the key part. Easy to fix, described here: http://tinyurl.com/2otfd Thank you very much, that looks like the solution

Module Installation

2004-06-01 Thread John Horner
I'm a little reluctant to even ask, because I'm sure these questions get asked very often here, but I have a problem with installing a module, HTML::Parser. I have Panther, I have Dev Tools, Perl 5.8.0, I tried using CPAN and manually, and it fails every time. I won't post the whole thing but

Re: Module Installation

2004-06-01 Thread Sherm Pendley
On Jun 1, 2004, at 7:56 PM, John Horner wrote: I won't post the whole thing but the key part of the message seems to be this LD_RUN_PATH= MACOSX_DEPLOYMENT_TARGET=10.3 cc -bundle -undefined dynamic_lookup -L/usr/local/lib Parser.o -o blib/arch/auto/HTML/Parser/Parser.bundle Exactly right -

Re: Module installation

2001-11-01 Thread Ken Williams
James Stepanek [EMAIL PROTECTED] wrote: I'm simply trying to install the DBI module. I have tried both the CPAN method as well as dowloading the files myself and trying the makefile route. Both give me the same errors. What's the error? We'd be able to help a lot better if we knew. It

Re: Module installation

2001-11-01 Thread Jim Cooper
/System/Library/Perl/darwin/CORE/perl.h -r--r--r-- 1 root wheel 92539 Oct 4 20:52 /System/Library/Perl/darwin/CORE/perl.h Oct 4 built perl 5.6.1 DBI and other DB modules works fine... On Friday, November 2, 2001, at 08:46 AM, James Stepanek wrote: I know this has been beaten to