On Jul 29, 2011, at 5:34 PM, shawn wilson wrote:
> Hmmm, Acme::CC::Bandit anyone?
I wonder how many others fell for that one? =:\
That's not a nice trick to play on a "beginners" list, ya know. =;)
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional command
On Jul 29, 2011 8:06 PM, "Marc" wrote:
>
> On Jul 29, 2011, at 2:49 PM, Mark Wagner wrote:
>
> > Most Perl modules are ordinary text files, so grepping around in the
> > modules directory for things like "mailsrv" or "wdfgh" should tell you
> > which modules are responsible.
>
> Mark,
>
>I
On Jul 29, 2011, at 2:49 PM, Mark Wagner wrote:
> Most Perl modules are ordinary text files, so grepping around in the
> modules directory for things like "mailsrv" or "wdfgh" should tell you
> which modules are responsible.
Mark,
I was able to do that with TextWrangler, but didn't find
On Fri, Jul 29, 2011 at 13:47, Marc wrote:
> When placing test orders in my re-factored shopping cart on my MacBook
> Pro, Little Snitch is warning me that Perl is trying to connect to the
> following servers when an order is completed and the confirmation e-mail is
> being sent to the c
, January 20, 2011 1:19 PM
To: Shlomi Fish
Cc: beginners@perl.org; DiGregorio, Dave
Subject: Re: Perl modules and epic perl
On 20 January 2011 08:45, Shlomi Fish wrote:
> I don't know a lot about EPIC, but I know it's been unmaintained since
2007 or
> so.
While I didn't see
On 20 January 2011 08:45, Shlomi Fish wrote:
> I don't know a lot about EPIC, but I know it's been unmaintained since 2007 or
> so.
While I didn't see much happening in CVS, the maintainer is still
active on the forums. His last post was 4 days ago. EPIC seems to be
working fine (but I haven't us
Hi Dave,
On Thursday 20 Jan 2011 15:16:53 DiGregorio, Dave wrote:
> So my initial search has shown not too much information. However I am
> curious how others do this. I want to use my Eclipse IDE to create Perl
> Modules. Is there a way to do this? Or do I simply have to use the h2xs
> command th
On Thu, Aug 19, 2010 at 08:15, Kuba wrote:
> Hi All,
> How can I install additional perl modules on the linux if I don't have
> root privileges on the box?
> Can I install any modules to the $HOME directory and use them at my
> scripts?
> Thank you in advance,
> Kuba
snip
A combination of [local:
2010/8/19 Kuba :
> Hi All,
> How can I install additional perl modules on the linux if I don't have
> root privileges on the box?
> Can I install any modules to the $HOME directory and use them at my
> scripts?
see this article:
http://sial.org/howto/perl/life-with-cpan/non-root/
local::lib is ma
On May 4, 2008, at 23:46, Richard Lee wrote:
Richard Lee wrote:
Chas. Owens wrote:
On Apr 16, 2008, at 13:33, Monty wrote:
Hope this is the right forum for this.
I recently downloaded Curses-1.23.tar from CPAN for installation
on to
my Solaris 8 system. I installed the module in the same
Richard Lee wrote:
Richard Lee wrote:
Chas. Owens wrote:
On Apr 16, 2008, at 13:33, Monty wrote:
Hope this is the right forum for this.
I recently downloaded Curses-1.23.tar from CPAN for installation on to
my Solaris 8 system. I installed the module in the same area as all
my other perl mod
Richard Lee wrote:
Chas. Owens wrote:
On Apr 16, 2008, at 13:33, Monty wrote:
Hope this is the right forum for this.
I recently downloaded Curses-1.23.tar from CPAN for installation on to
my Solaris 8 system. I installed the module in the same area as all
my other perl modules: /usr/local/lib
Chas. Owens wrote:
On Apr 16, 2008, at 13:33, Monty wrote:
Hope this is the right forum for this.
I recently downloaded Curses-1.23.tar from CPAN for installation on to
my Solaris 8 system. I installed the module in the same area as all
my other perl modules: /usr/local/lib/perl5/5.8.5, but I
I see that there are instructions for installing the module on the
CPAN website. Sorry to have bothered anyone.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/
On Apr 16, 2008, at 13:33, Monty wrote:
Hope this is the right forum for this.
I recently downloaded Curses-1.23.tar from CPAN for installation on to
my Solaris 8 system. I installed the module in the same area as all
my other perl modules: /usr/local/lib/perl5/5.8.5, but I noticed
there's also
Monty wrote:
> Hope this is the right forum for this.
>
> I recently downloaded Curses-1.23.tar from CPAN for installation on to
> my Solaris 8 system. I installed the module in the same area as all
> my other perl modules: /usr/local/lib/perl5/5.8.5, but I noticed
> there's also a directory name
Monty wrote:
Hope this is the right forum for this.
I recently downloaded Curses-1.23.tar from CPAN for installation on to
my Solaris 8 system. I installed the module in the same area as all
my other perl modules: /usr/local/lib/perl5/5.8.5, but I noticed
there's also a directory named /usr/loc
On Mon, Dec 18, 2006 at 04:37:20PM +0530, positive mind wrote:
> In Linux, how do I check if a particular Perl module is installed or not on
> my system?
TIMTOWTDI
A couple useful examples have already been offered. Here's mine:
perl -MSome::Module -e ''
If the module is installed, it'll jus
I use this:
#!/usr/bin/perl
print "Content-Type: text/html\n\n";
use ExtUtils::Installed;
my $instmod = ExtUtils::Installed->new();
foreach my $module ($instmod->modules()) {
my $version = $instmod->version($module) || "???";
print "$module -- $version";
print "";
}
I don
On 12/18/06, positive mind <[EMAIL PROTECTED]> wrote:
In Linux, how do I check if a particular Perl module is installed or not on
my system?
$ perl -MSome::Module\ 99 -e ''
will usually tell you something like
$ perl -MYAML\ 99 -e ''
YAML version 99 required--this is only version 0.62.
BEGIN
John Doe wrote:
@EXPORT = qw(
$html
&world_body_top
&labels;
);
typo: ";" after &labels
and don't forget to also include
use warnings;
hth, joe
AArghh I cant believe I didnt see that.
Thanks for thi
Brent Clark am Freitag, 9. Dezember 2005 11.16:
> Hi all
>
> Im busy experimenting with perl modules, and I keep getting this message,
>
> Undefined subroutine &main::labels called at
> /home/world/public_html/index.pl
[...]
>@EXPORT = qw(
> $html
>
Sagar Nargundkar wrote on 06.08.2005:
>Hi,
>
>I was trying to install Math::Random and a few other modules on an
>iMac G5 working on Mac OS X 10.4 but I had some trouble doing that.
>The following message was displayed inspite of having administrative
>pivilages -
>
>mkdir /usr/local/man: Permissi
Put this at the top of your script:
use lib '/tmp/perlNew/lib';
Or you can set the environment variable PERL5LIB to that path.
Rob
-Original Message-
From: Ajey Kulkarni [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 09, 2004 5:56 PM
To: [EMAIL PROTECTED]
Subject: Perl modules pat
On Jan 12, 2004, at 11:34 PM, Jan Eden wrote:
[..]
Now here are my questions (finally):
* Can someone on OS X put a copy of 'make' somewhere for me to
download?
* Is there anything else but the program itself to install?
* Which is the standard path for make? (/usr/bin, I would guess, but I
am n
Try something like JPL:
* http://www.jepstone.net/papers/PerlInside/slide33.html
* http://www.jepstone.net/papers/PerlInside/slide34.html
the slides are dated 1999 though, which is when i last experimented with
it too... i don't know if JPL is supported any more...
On Fri, 2003-09-19 at 13:42,
what is a p-value ?
Dario Greco wrote:
hi to all,
i need to calculate p-value of Student's t-test for many values.
i've in input a TAB-delimited txt file in which there are many columns of
numbers (they're means of values of alternatively "row data") for thousands of
rows.
I need in output of
der.co.uk]
Sent: Tuesday, November 05, 2002 3:07 PM
To: Beginners
Subject: RE: perl modules for NT
Hi Shaunn,
I am running W2K SP3 and it installs OK.
> pmm>install DBD-Oracle
PPM> install dbd::oracle
Install package 'dbd-oracle?' (y/N): y
Installing package 'dbd-oracle
Hi Shaunn,
I am running W2K SP3 and it installs OK.
> pmm>install DBD-Oracle
PPM> install dbd::oracle
Install package 'dbd-oracle?' (y/N): y
Installing package 'dbd-oracle'...
Bytes transferred: 92963
Installing C:\Perl\site\lib\auto\DBD\Oracle\Oracle.bs
Installing C:\Perl\site\lib\auto\DBD\Oracle
funny, i used the ppm to install DBI on my server, it's a win2k service pack
3, but nevertheless, still the same perl software. try:
ppm> install DBI
case sensitive.. maybe?
dan
"James Kipp" <[EMAIL PROTECTED]> wrote in message
news:EC6C49DE5C846143AA2CE580420E77C331D09D@;xexwlm05.mbnainternati
From: "Johnson, Shaunn" <[EMAIL PROTECTED]>
> --I've installed ActiveState 2.1.6 on Windows NT serv. pak 6.
No you did not.
You installed ActiveState ActivePerl 6xx which is Perl version 5.6.1
+ some patches.
If you want to know the exact version run
perl -v
Only the PPM installed with
>>
> D:\PERL\BIN>ppm
> PPM interactive shell (2.1.6) - type 'help' for available commands.
> PPM> install dbi
> Install package 'dbi?' (y/N): y
> Installing package 'dbi'...
> Error installing package 'dbi': Could not locate a PPD file
> for package dbi
> PPM> version
> 2.1.6
> PPM>
>
> [/snip e
On Tuesday, July 16, 2002, at 01:13 , Paul Johnson wrote:
I think one of my unresolved concerns about the modules/libraries
we have seen this month is this idea of using them to cache
'variables' that people want to access directly, rather than
say, using them to cache 'objects'
my
On Mon, Jul 15, 2002 at 06:06:29PM -0700, drieux wrote:
>
> On Monday, July 15, 2002, at 11:01 , Jeff 'japhy' Pinyan wrote:
>
> >On Jul 15, chad kellerman said:
> >
> >>package Script;
> >>BEGIN {
> >> use Exporter;
> >> @ISA = qw( Exporter );
> >> @EXPORT = qw($serverList);
> >>}
On Monday, July 15, 2002, at 11:01 , Jeff 'japhy' Pinyan wrote:
> On Jul 15, chad kellerman said:
>
>> I am trying to include my own perl module that is outside the regular
>> @INC array. But my perl script still can not find it.. Any suggestions
>> would be appreciated...
to amp on Jeff's no
On Jul 15, chad kellerman said:
>I am trying to include my own perl module that is outside the regular
>@INC array. But my perl script still can not find it.. Any suggestions
>would be appreciated...
>script.pm
>
>package Script;
>BEGIN {
> use Exporter;
> @ISA = qw( Exporter );
>
Chad,
Try adding this at the top of the script:
BEGIN { unshift(@INC, "./"); }
instead of:
push (@INC, '.');
>>On Mon, 15 Jul 2002 13:48:38 -0400, chad kellerman <[EMAIL PROTECTED]> wrote:
>>Hello,
>>
>> Boy this stuff can get frustrating
>>
>> I am trying to include my own perl m
You cannot use push(@INC, '.') in the normal way because it is a runtime
function call and @INC must be changed at translation time. Instead use
use lib '.';
at the top of your program.
Tanton
- Original Message -
From: "chad kellerman" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: M
At 01:38 PM 7/8/02 -0400, William Black wrote:
>Hi all,
>
>If someone does't have a certain perl module, where might one get it from?
http://search.cpan.org
--
Peter Scott
Pacific Systems Design Technologies
http://www.perldebugged.com/
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additio
Hi all,
If someone does't have a certain perl module, where might one get it from?
William Black
_
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx
--
To unsubscribe
On Saturday, April 6, 2002, at 11:43 , Robert Brandtjen wrote:
[..]
>> plan A: rebuild perl to be 5.6.0 aware
>>
>> plan B:
>>
>> PERLLIB=/usr/lib/perl5/5.6.0:/usr/lib/perl5/site_perl/5.6.0
>> export PERLLIB
>
>
> even after running that i get :
> This is perl, v5.6.1 built for i386-linux
drieux wrote:
> I bet you ran into the same thing I just noticed - namely
> that your version of perl when you run perl -V, does not
> happen to have any reference to
>
> /usr/lib/perl5/5.6.0
>
> at all, which is where your previously installed packages are
>
> plan A: rebuild perl to be
On Saturday, April 6, 2002, at 10:56 , Robert Brandtjen wrote:
> I'm using RH 7.2 - but ever since up2date installed perl 5.6.1, my
> perllocal.pod dose not see all of the installed perl modules in /usr/lib/
> perl5/5.6.1 and instead only sees the ones I installed for Interchange.
>
> when I ru
Joe Raube wrote:
>Sounds more like a linux distribution question - as if you are trying
>to install autoconf, and it requires a package called perl-modules.
>
>What distribution are you using?
>
>-Joe
>
I'm using RH 7.2 - but ever since up2date installed perl 5.6.1, my
perllocal.pod dose not see
Sounds more like a linux distribution question - as if you are trying
to install autoconf, and it requires a package called perl-modules.
What distribution are you using?
-Joe
--- Robert Brandtjen <[EMAIL PROTECTED]> wrote:
> Umm - I can't find this at cpan.org - does it have another name ?
>
Jonathan E. Paton [[EMAIL PROTECTED]] quoth:
*>Correct, they are standard modules - apparently not available any other
*>way... I presume so that you know the standard ones are working for a
*>given version of perl.
*>
*>You *could* download Perl 5.6, and transplant them... and fix the minor
*>pro
On Thursday, April 4, 2002, at 02:03 , Jonathan E. Paton wrote:
[..]
> You *could* download Perl 5.6, and transplant them... and fix the minor
> problem that OO wasn't properly implemented until 5.005_03. Honestly,
> upgrade to 5.6 something, or even 5.8 (is it out yet?) - even if you
> have to
> something. Didn't you use to be able to find individual modules for
> download on CPAN without having to download an entire version of Perl?
search.cpan.org, look on LHS.
> I'm specifically looking for the Fcntl, POSIX, and Socket modules,
> but it appears that you can only get those modules
OZGUR GENC [[EMAIL PROTECTED]] quoth:
*>Hi All,
*>I would like to use perl modules.
*>I downloaded the module (Telnet.pm) and I copied it to
http://www.cpan.org/misc/cpan-faq.html#How_install_Perl_modules
e.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL
You installed it wrong. First of all the module is Net::Telnet, so it needs
to be in the Net/ subdirectory, like this...
/usr/perl5/5.00503/sun4-solaris/Net
Second, some modules (not all) need to be compiled or have some other things
that need to be done during the installation. So if copying
50 matches
Mail list logo