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 crea

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

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 Joel Rees
There are other issues in the MacOS X for manual installation or modules such as where the modules are install. The manual method may put them in /usr/local instead of in /Library. Be careful. 'sfunny. I actually prefer to load my machine-wide modules in /usr/ local. Maybe it's just the w

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 shou

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 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 /usr/local/lib/perl5/5.8.8

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 th

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 syste

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

2006-08-24 Thread John Delacour
At 5:57 pm +0100 24/8/06, Moisés Chicharro wrote: Rather that writing "Does that make any sense", I should of wrote "How do I get round this". sudo cpan Password: . > cpan install ...

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

Re: Perl Module Installation

2006-08-24 Thread Moisés Chicharro
om: Moisés 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.

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 bi

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 --

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 te

RE: Perl Module Installation

2006-08-24 Thread Ted Zeng
x@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 trying to run 'install DBI', it piled a whole load of stuff

Re: Perl Module Installation

2006-08-23 Thread Ken Williams
On Aug 23, 2006, at 4:25 PM, Michael Barto wrote: Typically: #./configuration #make #make check <= VERY IMPORTANT!! #make install In about 12 years of doing perl I think I've never seen an installation sequence that looks like that. I think you mean: % perl Makefile.PL % make

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

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 manua

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 t

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 s

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: Thank you very much, that looks like the solution

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 -

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

2001-11-02 Thread Matt Patterson
On 1/11/01 at 3:46 pm, [EMAIL PROTECTED] (James Stepanek) wrote: > It all comes down to this message. This doesn't make > any sense to me since this directory just doesn't > exist. > > (You get this message, because MakeMaker could not > find "/System/Library/Perl/darwin/CORE/perl.h") I know i

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

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.

Module installation

2001-11-01 Thread James Stepanek
I know this has been beaten to death here (or so it would seem from the archives), but I'm afraid I still need help. I have read the articles on the subject from the archive, but after following the instructions I still get the same error. I'm simply trying to install the DBI module. I have trie