Re: Are there any ALSA Perl Modules?

2024-01-29 Thread sisyphus
On Mon, Jan 29, 2024 at 6:28 AM Martin McCormick wrote: [snip] > I may be looking in the wrong places but, so far, I seem > to be batting zeros when looking for perl and alsa together. > I take it that MIDI::ALSA (https://metacpan.org/pod/MIDI::ALSA) has little or nothing to offer ?

Re: Are there any ALSA Perl Modules?

2024-01-29 Thread Olivier
Shlomi Fish writes: >> Anyway, the FFI concept will probably someday come in >> handy for a different project so I will continue with the C I was >> working on. What I did in a project is having the main functionality written in C, but using Perl for things that could be handy like parsing

Re: Are there any ALSA Perl Modules?

2024-01-29 Thread Shlomi Fish
hi Martin, On Mon, 29 Jan 2024 22:38:27 -0600 "Martin McCormick" wrote: > Shlomi Fish writes: > > hi Martin, > > you can try using an FFI, eg: > > > > https://metacpan.org/dist/Inline-C/view/lib/Inline/C.pod > > > > https://metacpan.org/dist/Inline-Python/view/Python.pod > > > > https://meta

Re: Are there any ALSA Perl Modules?

2024-01-29 Thread Martin McCormick
Shlomi Fish writes: > hi Martin, > you can try using an FFI, eg: > > https://metacpan.org/dist/Inline-C/view/lib/Inline/C.pod > > https://metacpan.org/dist/Inline-Python/view/Python.pod > > https://metacpan.org/pod/FFI::Platypus Many thanks. I am glad I asked the question but it has taken me

Re: Are there any ALSA Perl Modules?

2024-01-28 Thread Shlomi Fish
hi Martin, On Sun, 28 Jan 2024 13:27:45 -0600 "Martin McCormick" wrote: > Several years ago, I wrote some C code which turns one's > computer's sound interface in to a sound-activated recorder that > I could then connect to radio receivers or microphones and record > when audio started and stop

Re: Are there any ALSA Perl Modules?

2024-01-28 Thread hw
On Sun, 2024-01-28 at 13:27 -0600, Martin McCormick wrote: > [...] > I may be looking in the wrong places but, so far, I seem > to be batting zeros when looking for perl and alsa together. > > Any good ideas are greatly appreciated, here. I would think that one nowadays would use (go

Are there any ALSA Perl Modules?

2024-01-28 Thread Martin McCormick
Several years ago, I wrote some C code which turns one's computer's sound interface in to a sound-activated recorder that I could then connect to radio receivers or microphones and record when audio started and stop recording when there is nothing but silence. One essentially sets a sound card to

Re: Best way to install perl modules

2014-10-09 Thread Shlomi Fish
Hi Benjamin, On Thu, 9 Oct 2014 22:11:41 +1300 Benjamin Fernandis wrote: > Hi Shlomi, > > Thanks. I also feel that centos/rhel perl seems brokern in terms of > dependencies issues and some others. You're welcome. Regards, Shlomi Fish -- -

Re: Best way to install perl modules

2014-10-09 Thread Sam
Take note at least on rehl, you have to run 'yum install perl perl-core' to get a full working perl (If I remember right). --Sam On 10/09/2014 04:11 AM, Benjamin Fernandis wrote: Hi Shlomi, Thanks. I also feel that centos/rhel perl seems brokern in terms of dependencies issues and some others

Re: Best way to install perl modules

2014-10-09 Thread Benjamin Fernandis
Hi Shlomi, Thanks. I also feel that centos/rhel perl seems brokern in terms of dependencies issues and some others. Regards On Thu, Oct 9, 2014 at 9:12 PM, Shlomi Fish wrote: > Hi Benjamin, > > On Sun, 5 Oct 2014 17:39:46 +1300 > Benjamin Fernandis wrote: > > > Hi Mike, > > > > Thanks for yo

Re: Best way to install perl modules

2014-10-09 Thread Shlomi Fish
Hi Benjamin, On Sun, 5 Oct 2014 17:39:46 +1300 Benjamin Fernandis wrote: > Hi Mike, > > Thanks for your kind response. I tried cpanm instead of cpan, but many > times, it does not install require dependencies for module. > > For example, when i was trying to install > cpanm XML::SAX -> it fai

Re: Best way to install perl modules

2014-10-06 Thread Kent Fredric
On 7 October 2014 16:07, Benjamin Fernandis wrote: > + Attaching log file. > Lacking Env.pm basically means your vendor's Perl is broken. Env.pm is shipped with Perl itself, and subsequently things may forget to depend on it ( at least, in a way that cpan tools recognise ) and be silently broke

Re: Best way to install perl modules

2014-10-06 Thread Benjamin Fernandis
+ Attaching log file. On Tue, Oct 7, 2014 at 2:59 PM, Mike wrote: > Please provide us with any errors from the installation log you've > received when using cpanm. > > > On 10/06/2014 08:58 PM, Benjamin Fernandis wrote: > > Hi, > > Today I face same previous problem to install package with cpa

Re: Best way to install perl modules

2014-10-06 Thread Mike
Please provide us with any errors from the installation log you've received when using cpanm. On 10/06/2014 08:58 PM, Benjamin Fernandis wrote: Hi, Today I face same previous problem to install package with cpanm. This time i have already installed Development Tools as suggested by Sam. For

Re: Best way to install perl modules

2014-10-06 Thread Benjamin Fernandis
Hi, Today I face same previous problem to install package with cpanm. This time i have already installed Development Tools as suggested by Sam. For testing it more, i was trying to install dancer by cpanm. First trial, i got failed and then looked into build log and found some dependent modules

Re: Best way to install perl modules

2014-10-04 Thread Benjamin Fernandis
Hi, Sam, Thanks, After installing development tools group, it works. Regards Ben On Sun, Oct 5, 2014 at 6:02 PM, Sam wrote: > You probably need to give us more info as both cpan and cpanm will auto > resolve and install needed dependencies. > > The dependency installs could be failing because

Re: Best way to install perl modules

2014-10-04 Thread Sam
You probably need to give us more info as both cpan and cpanm will auto resolve and install needed dependencies. The dependency installs could be failing because a compiler or something similar is missing. If you are on a redhat based system, trying running: yum groupinstall "Development Tool

Re: Best way to install perl modules

2014-10-04 Thread Benjamin Fernandis
Hi Mike, Thanks for your kind response. I tried cpanm instead of cpan, but many times, it does not install require dependencies for module. For example, when i was trying to install cpanm XML::SAX -> it failed and said no Fatal.pm module , then i manually first installed that module and then i t

Re: Best way to install perl modules

2014-10-04 Thread Mike
Use cpanminus. To install: sudo curl -L http://cpanmin.us | perl - --sudo App::cpanminus To use: sudo cpanm Here's the official documentation: http://search.cpan.org/~miyagawa/App-cpanminus-1.7012/lib/App/cpanminus.pm On 10/4/14, 8:32 PM, Benjamin Fernandis wrote: Hi, Many times I face p

Best way to install perl modules

2014-10-04 Thread Benjamin Fernandis
Hi, Many times I face problem with module installation and then have to go to google and apply trial and error to resolve this permanently, could u please suggest me best and correct method to get resolved it? i mean if i installed centos 7 freshly then what are pre-requisites from OS side to get

Re: Impossible to install Perl modules

2014-07-08 Thread Sebastien Feugere
auvage wrote: > >> Hi there, >> >> I'm not able to install any perl modules on one of my RedHat 6.5 >> servers. Hereunder the issue: >> >> [root@xxx jmx4perl-1.10]#cpan Config::General >> CPAN: Storable loaded ok (v2.20) >> Going to read '/ro

Re: Impossible to install Perl modules

2014-07-08 Thread Sam
On 07/08/2014 05:07 AM, Bob Sauvage wrote: Hi there, I'm not able to install any perl modules on one of my RedHat 6.5 servers. Hereunder the issue: [root@xxx jmx4perl-1.10]#cpan Config::General CPAN: Storable loaded ok (v2.20) Going to read '/root/.cpan/Metadata' Database was g

Impossible to install Perl modules

2014-07-08 Thread Bob Sauvage
Hi there,  I'm not able to install any perl modules on one of my RedHat 6.5 servers. Hereunder the issue:  [root@xxx jmx4perl-1.10]#cpan Config::General CPAN: Storable loaded ok (v2.20) Going to read '/root/.cpan/Metadata' Database was generated on Tue, 08 Jul 2014 07:29:02 GMT

Re: Adding perl modules, custom built .pm files

2013-05-09 Thread Shlomi Fish
Hi Dariusz, On Thu, 9 May 2013 10:08:38 -0500 Dariusz Dolecki wrote: > How do I add existing custom built perl modules that were built on a > different system to another one, I have copied over the .pm file. > Put them in the @INC : [ IRC ] perlbot: @INC rindolf: To change @INC

Adding perl modules, custom built .pm files

2013-05-09 Thread Dariusz Dolecki
How do I add existing custom built perl modules that were built on a different system to another one, I have copied over the .pm file. Thanks in advance.

Re: moving from ubuntu 10.04 to 12.04. how to have same PERL modules there?

2012-06-05 Thread Rajeev Prasad
get system and open some tool like synaptic (for ubuntu) and install all those modules. :) I will try that too.   ty. Rajeev From: Shawn H Corey To: beginners@perl.org Sent: Tuesday, June 5, 2012 3:29 PM Subject: Re: moving from ubuntu 10.04 to 12.04. how to have

Re: moving from ubuntu 10.04 to 12.04. how to have same PERL modules there?

2012-06-05 Thread Shawn H Corey
On 12-06-05 04:00 PM, Rajeev Prasad wrote: for e.g. on 10.10: perl ver is: v5.10 on 12.04 it is: perl (5.14.2-6ubuntu2) is there a quick method to do that? No, but you can adapt this algorithm: http://onionstand.blogspot.ca/2012/05/moving-modules-across-perlbrew.html Use this command to cre

moving from ubuntu 10.04 to 12.04. how to have same PERL modules there?

2012-06-05 Thread Rajeev Prasad
Hello,   I am going to move (not upgrade) from my current ubuntu ver 10.10  to ver. 12.04 (fresh install). I will restore my data and scripts there and have them ready.   But, how do i have all the required modules (which i have installed on my current PC over months) installed on target system?

Re: Perl modules that "phone home"

2011-07-29 Thread Marc
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

Re: Perl modules that "phone home"

2011-07-29 Thread shawn wilson
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 t

Re: Perl modules that "phone home"

2011-07-29 Thread Marc
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

Re: Perl modules that "phone home"

2011-07-29 Thread Mark Wagner
the fact that a company in China owns the domain is probably pure coincidence. >  mailsrv.gh.com No idea about this one. > >        How can I find out which module(s) is doing this?  I don't want to go > live until I'm able to stop this, since I don't know how much, if a

Perl modules that "phone home"

2011-07-29 Thread Marc
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 customer: nullmx.yourdomain.com wdfgh.com mailsr

RE: Perl modules and epic perl

2011-01-20 Thread DiGregorio, Dave
, 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

Re: Perl modules and epic perl

2011-01-20 Thread Hilco Wijbenga
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

Re: Perl modules and epic perl

2011-01-20 Thread Shlomi Fish
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

Perl modules and epic perl

2011-01-20 Thread DiGregorio, Dave
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 then import the files to Eclipse afterwards? Thanks -Dave

Re: Perl modules

2010-08-19 Thread Chas. Owens
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 sni

Re: Perl modules

2010-08-19 Thread Jeff Peng
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-

Perl modules

2010-08-19 Thread 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? Thank you in advance, Kuba -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional comman

How to install perl modules on a windows machines which cant connect to internet?

2010-07-14 Thread 徐卓夫
Hi , I'm a newbie. I've got a windows machines installed activeperl 5.8.8 .I wanna install Win32::process::info module on it , but the machine can''t connect to Internet. How can I install this module on this win machine? Thank you very much.

Perl modules to process PDF files

2010-05-03 Thread Parag Kalra
Hi All, I need to process some PDF files to do some complex validation (like checking the colour of icons, position etc). I was wondering if Perl comes with some handy modules to process PDF files? AFAIK even professional tools like QTP are not good with processing PDF files. Cheers, Parag

Re: installing perl modules on 64-bit Os

2009-08-15 Thread Sisyphus
- Original Message - From: "perl pra" To: "Beginners List" Sent: Saturday, August 15, 2009 6:08 PM Subject: installing perl modules on 64-bit Os Hi Gurus, I have installed "ActivePerl-5.10.0.1004-MSWin32-x86-287188.msi" on WindowsServer 2008 64-bit

installing perl modules on 64-bit Os

2009-08-15 Thread perl pra
Hi Gurus, I have installed "ActivePerl-5.10.0.1004-MSWin32-x86-287188.msi" on WindowsServer 2008 64-bit OS. I can run the scripts that I have written on 32-bit OS,My query is whats the processes of installing perl modules on 64-bit OS. In 32-bit we use nmake to install, how to install

RE: Installing perl modules

2008-10-29 Thread Stewart Anderson
> Hi Andy, > > > Andy Cravens wrote: > > Is there a way to have multiple users on a server using the perl at > > /usr/local/bin/perl and yet have their own personal perl modules that > > the other users can't see? > > > ... > > During modul

Re: Installing perl modules

2008-10-29 Thread Raymond Wan
Hi Andy, Andy Cravens wrote: Is there a way to have multiple users on a server using the perl at /usr/local/bin/perl and yet have their own personal perl modules that the other users can't see? ... During module install you can specify an alternate location to install the module

Installing perl modules

2008-10-28 Thread Andy Cravens
Is there a way to have multiple users on a server using the perl at /usr/local/bin/perl and yet have their own personal perl modules that the other users can't see? I'm trying to figure out if there is a way to allow multiple users to install any and all perl modules thay ma

Re: example from 'writing perl modules'... quesiton

2008-06-16 Thread Jenda Krynicky
From: Rob Dixon <[EMAIL PROTECTED]> > It is common practice in most languages to pass an additional implicit > parameter > to method calls. Class methods like BOA::Logger2->new will have the class name > passed as the first parameter, whereas object methods like $logger->level will > have the obje

Re: example from 'writing perl modules'... quesiton

2008-06-15 Thread Rob Dixon
Richard Lee wrote: > Rob Dixon wrote: >> Richard Lee wrote: >> >>> I was just testing out the code from the book 'writing perl modules for >>> cpan' and I am trying out below module and getting compiled error. >>> I cannot/donot s

Re: example from 'writing perl modules'... quesiton

2008-06-15 Thread Richard Lee
Rob Dixon wrote: Richard Lee wrote: I was just testing out the code from the book 'writing perl modules for cpan' and I am trying out below module and getting compiled error. I cannot/donot see what is wrong w/ the code. can anyone see? use strict; use warnings; package BO

Re: example from 'writing perl modules'... quesiton

2008-06-15 Thread Richard Lee
Rob Dixon wrote: Richard Lee wrote: I was just testing out the code from the book 'writing perl modules for cpan' and I am trying out below module and getting compiled error. I cannot/donot see what is wrong w/ the code. can anyone see? use strict; use warnings; package BO

Re: example from 'writing perl modules'... quesiton

2008-06-15 Thread yitzle
On line 58... Wait! You only got 47 lines. How does line 62 have an error? The last subroutine starts off: sub { Giving it a name ought to fix it all up, I think. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: example from 'writing perl modules'... quesiton

2008-06-15 Thread Rob Dixon
Richard Lee wrote: > I was just testing out the code from the book 'writing perl modules for > cpan' and I am trying out below module and getting compiled error. > I cannot/donot see what is wrong w/ the code. > > can anyone see? > > use strict; > use warn

example from 'writing perl modules'... quesiton

2008-06-15 Thread Richard Lee
I was just testing out the code from the book 'writing perl modules for cpan' and I am trying out below module and getting compiled error. I cannot/donot see what is wrong w/ the code. can anyone see? use strict; use warnings; package BOA::Logger2; use Carp qw(croak); us

Re: Perl Modules

2008-05-04 Thread Chas. Owens
area as all my other perl modules: /usr/local/lib/perl5/5.8.5, but I noticed there's also a directory named /usr/local/lib/perl5/site_perl. Under the directory 5.8.5, I untarred the file and it created a directory named Curse-1.23 and put everything under it. I moved the Curses.pm modu

Re: Perl Modules

2008-05-04 Thread Richard Lee
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

Re: Perl Modules

2008-05-04 Thread Richard Lee
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

Re: Perl Modules

2008-05-04 Thread Richard Lee
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

Re: Perl Modules

2008-04-17 Thread Monty
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/

Re: Perl Modules

2008-04-16 Thread Chas. Owens
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&#

Re: Perl Modules

2008-04-16 Thread Rob Dixon
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&

Re: Perl Modules

2008-04-16 Thread John W. Krahn
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

Perl Modules

2008-04-16 Thread Monty
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/local/lib/

Re: Command line installing perl modules

2008-01-31 Thread Bobby
On Thursday 31 January 2008 20:40:13 Chas. Owens wrote: > > How do I automate the install of a bunch of modules. Is it enough to just > > install the tarballs, or will there be dependencies that I have to trace > > down first? If so what is the best way to do that? > You automate it by using the

Re: Command line installing perl modules

2008-01-31 Thread Chas. Owens
On Jan 31, 2008 8:32 PM, Bobby <[EMAIL PROTECTED]> wrote: snip > Yes, thank you, but that part is old hat. What I'm looking for is if anything > is different when I simply install the tarballs? snip You have to do everything yourself. snip > How do I automate the install of a bunch of modules. Is

Re: Command line installing perl modules

2008-01-31 Thread Bobby
On Thursday 31 January 2008 20:15:22 Chas. Owens wrote: > On Jan 31, 2008 7:44 PM, Bobby <[EMAIL PROTECTED]> wrote: > > On Thursday 31 January 2008 17:45:53 Chas. Owens wrote: > > > On Jan 31, 2008 3:01 PM, Bobby <[EMAIL PROTECTED]> wrote: > > > snip > > > > > > > This will be done only on brand ne

Re: Command line installing perl modules

2008-01-31 Thread Chas. Owens
On Jan 31, 2008 7:44 PM, Bobby <[EMAIL PROTECTED]> wrote: > On Thursday 31 January 2008 17:45:53 Chas. Owens wrote: > > On Jan 31, 2008 3:01 PM, Bobby <[EMAIL PROTECTED]> wrote: > > snip > > > > > This will be done only on brand new Slackware 12 installs which does not > > > have CPAN. > > > > snip

Re: Command line installing perl modules

2008-01-31 Thread Bobby
On Thursday 31 January 2008 17:45:53 Chas. Owens wrote: > On Jan 31, 2008 3:01 PM, Bobby <[EMAIL PROTECTED]> wrote: > snip > > > This will be done only on brand new Slackware 12 installs which does not > > have CPAN. > > snip > > That doesn't sound right. Are you certain you have Perl installed? >

Re: Command line installing perl modules

2008-01-31 Thread Chas. Owens
On Jan 31, 2008 3:01 PM, Bobby <[EMAIL PROTECTED]> wrote: snip > This will be done only on brand new Slackware 12 installs which does not have > CPAN. snip That doesn't sound right. Are you certain you have Perl installed? CPAN is part of Core Perl and should be there if Perl is installed. Try p

Command line installing perl modules

2008-01-31 Thread Bobby
Hi, I'm trying to figure out how to install perl modules from command line (to automate the install process). CPAN allowed me to d/l direct which results in tarballs. Are there any caveats to watch out for when installing them this way? This will be done only on brand new Slackwa

Re: Manually installing perl modules on windows

2007-11-24 Thread Jenda Krynicky
To: beginners@perl.org From: andy <[EMAIL PROTECTED]> Subject:Manually installing perl modules on windows Date sent: Fri, 23 Nov 2007 07:26:35 -0800 (PST) Organization: http://groups.google.com > Hi, > >

Re: Manually installing perl modules on windows

2007-11-24 Thread Ron Bergin
On Nov 23, 7:26 am, [EMAIL PROTECTED] (Andy) wrote: > Hi, > > I am trying to talk to a programmable oven over serial port for heat > testing of a PCB. > > I am using ActiveState perl v5.8.8 on Windows XP. I am trying to > install the Win32:SerialPort package using Activestates Perl Package > Manage

Manually installing perl modules on windows

2007-11-23 Thread andy
Hi, I am trying to talk to a programmable oven over serial port for heat testing of a PCB. I am using ActiveState perl v5.8.8 on Windows XP. I am trying to install the Win32:SerialPort package using Activestates Perl Package Manager (PPM). Unfortunatley, I cant see it anywhere,in the package repo

Re: Executing more commands in remote m/c using Net::SSH::perl Modules

2007-07-25 Thread Jeff Pang
--- sivasakthi <[EMAIL PROTECTED]> wrote: > if i have changed the line as, > > my($out, $err) = $ssh->cmd("cd /usr/local","ls"); > Try change this line to: my($out, $err) = $ssh->cmd("cd /usr/local;ls"); good luck. -- http://home.earthlink.net/~pangj/ http://home.arcor.de/jeffpang/

Executing more commands in remote m/c using Net::SSH::perl Modules

2007-07-25 Thread sivasakthi
Hi All, I have checked the Net::SSH::perl modules, Just i have logged in to the remote machine and executing the command. The code is following, #! /usr/bin/perl use strict; use warnings; use Net::SSH::Perl; my $hostname="xx.xx.xx.xx"; my $user=; my $pass=xxx; my $ssh = Net:

Re: Installing perl modules problem

2007-07-13 Thread Vivek Menon
I am having problems installing some specific > > perl modules. Can someone help?? > > I need to install the following perl modules: > > Module XML::Parser > > Module XML::Quote > > Module Mail::Send > > Module DB_File > > Module IO::Scalar > &g

Re: Installing perl modules problem

2007-07-13 Thread [EMAIL PROTECTED]
On Jul 13, 4:27 pm, [EMAIL PROTECTED] (Vivek Menon) wrote: > Hello All, > I am a beginner and I am trying to install a bioinformatics > utility(Interproscan) on a Sun Solaris machine. This software is based > on Perl packages and I am having problems installing some specific > pe

Re: Installing perl modules problem

2007-07-13 Thread Jefferson Kirkland
On 7/13/07, Vivek Menon <[EMAIL PROTECTED]> wrote: I am using the CPAN method and I have done the following: Install from source expat-1.95.5 export PATH=$PATH:/opt/SUNWspro/bin: /usr/sfw/bin:/usr/ccs/bin export CC=cc export CPPFLAGS="-l/usr/local/include -I/usr/sfw/include -I/opt/sfw/incl

Re: Installing perl modules problem

2007-07-13 Thread Jefferson Kirkland
On 7/13/07, Vivek Menon <[EMAIL PROTECTED]> wrote: Hello All, I am a beginner and I am trying to install a bioinformatics utility(Interproscan) on a Sun Solaris machine. This software is based on Perl packages and I am having problems installing some specific perl modules. Can someone he

Installing perl modules problem

2007-07-13 Thread Vivek Menon
Hello All, I am a beginner and I am trying to install a bioinformatics utility(Interproscan) on a Sun Solaris machine. This software is based on Perl packages and I am having problems installing some specific perl modules. Can someone help?? I need to install the following perl modules: Module XML

Re: Verified for Spam -RODIN- I2R: Problem Accessing Perl Modules Through .htaccess

2007-04-09 Thread Jeff Pang
Don't look at your config carefully.But if I remembered that correctly,you may need to set the "SetEnv" direction in the httpd.conf. By the way,why don't include this line in your CGI script? use lib '/the/module/path'; 2007/4/9, Wijaya Edward <[EMAIL PROTECTED]>: Dear experts, I have the f

Re: Hi,, Regarding perl modules

2007-01-10 Thread Andy Greenwood
On 10 Jan 2007 09:21:55 -, Vikas Kumar Choudhary <[EMAIL PROTECTED]> wrote: Hi I am vikas here, just getting in perl.. can anybody told me to create modules and how to use these in our scripts.. $ perldoc perlmod should get you started. To use modules you've created, just put this at the

Hi,, Regarding perl modules

2007-01-10 Thread Vikas Kumar Choudhary
Hi I am vikas here, just getting in perl.. can anybody told me to create modules and how to use these in our scripts.. Thanks Vikas Kumar Choudhary Software Engineer Bangalore-50078 Mobile:- 91-9886793145

Re: perl modules

2006-12-18 Thread Chad Perrin
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

Re: perl modules

2006-12-18 Thread Cy Kurtz
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

Re: perl modules

2006-12-18 Thread Adriano Ferreira
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

perl modules

2006-12-18 Thread positive mind
In Linux, how do I check if a particular Perl module is installed or not on my system? thanks pm

Re: Need help in installing perl modules

2006-11-15 Thread Omega -1911
while installing the perl modules in WINDOWS. If i tried to install the perl modules by extracting the tar file and running the make file, it is giving the command line error. If i tried to install the perl modules using the command 'perl -MCPAN -e install ', it is failed. I couldn&#

Need help in installing perl modules

2006-11-15 Thread Anushya Ganapathy
Hi, I am in the very critical situation while installing the perl modules in WINDOWS. If i tried to install the perl modules by extracting the tar file and running the make file, it is giving the command line error. If i tried to install the perl modules using the command 'perl -MCP

Need help in installing perl modules

2006-11-15 Thread Anushya Ganapathy
Hi, I am in the very critical situation while installing the perl modules in WINDOWS. If i tried to install the perl modules by extracting the tar file and running the make file, it is giving the command line error. If i tried to install the perl modules using the command 'perl -MCP

Command Line error while installing perl modules.

2006-11-14 Thread Anushya Ganapathy
Hi, I am trying to install a perl module Net::RawIP in windows xp. Sorry, if this doubt is not belongs to this list. While installing Net::RawIP, i faced as below. ** D:\Tools\PerlModules\Net-RawIP-0.2>Makefile.PL Sorry,ethernet related methods are not implemented on this system Sorry, t

Re: Hi, Everyone, I can't install perl modules correctly using CPAN, why?

2006-11-04 Thread Jen Spinney
On 11/3/06, Jeff Pang <[EMAIL PROTECTED]> wrote: > >Hi, everyone, > >When I want to install perl module WWW::Yahoo::KeywordExtractor in > >my Ubuntu damper 6.06 OS, it doesn't work properly. Looks like something with XML is wrong. Give a try to install XML::SAX::Expat and XML::Simple at first

Re: Hi, Everyone, I can't install perl modules correctly using CPAN, why?

2006-11-03 Thread Jeff Pang
> >Hi, everyone, > >When I want to install perl module WWW::Yahoo::KeywordExtractor in > >my Ubuntu damper 6.06 OS, it doesn't work properly. Looks like something with XML is wrong. Give a try to install XML::SAX::Expat and XML::Simple at first. -- Books below translated by me to Chinese. Pra

Hi, Everyone, I can't install perl modules correctly using CPAN, why?

2006-11-03 Thread 辉 王
Hi, everyone, When I want to install perl module WWW::Yahoo::KeywordExtractor in my Ubuntu damper 6.06 OS, it doesn't work properly. The error message is listed below: === CPAN: Storable loaded ok Going to read /home/wanghui/.cpan/Metadata Database was gene

Re: Improving script listing Perl modules installed

2006-08-15 Thread Mumia W.
On 08/14/2006 06:54 PM, SFantar wrote: Hello everyone I want to list all the Perl modules installed on my system. The script below does it well. Unfortunately, it displays the name of each installed Perl module twice. How can I get rid of them? [...] For me it only displays each module once

Re: Improving script listing Perl modules installed

2006-08-14 Thread Tom Phoenix
On 8/14/06, SFantar <[EMAIL PROTECTED]> wrote: I want to list all the Perl modules installed on my system. Did you want Inside? http://search.cpan.org/~phoenix/Inside-1.01/ Hope this helps! --Tom Phoenix Stonehenge Perl Training -- To unsubscribe, e-mail: [EMAIL PROTECTE

Improving script listing Perl modules installed

2006-08-14 Thread SFantar
Hello everyone I want to list all the Perl modules installed on my system. The script below does it well. Unfortunately, it displays the name of each installed Perl module twice. How can I get rid of them? Lastly, if you have any suggestion about improving this script, it would be very nice

perl modules: PERL5LIB, PREFIX, LIB, and site_perl confusion

2006-07-08 Thread Erik Paulson
I'm confused about installing where Perl modules get placed. The standard answer "how do I install a perl module without root" is perl Makefile.PL PREFIX=/some/path/to/my/modules and then either a 'use lib /some/path/to/my/modules' or setenv PERL5LIB /some/pa

How can I uninstall perl modules

2006-04-11 Thread Logg, Connie A.
I have used perl -MCPAN to install Bundle::DBD::mysql, and it appears that it is not working. I would like to uninstall the module and reinstall it. How can I uninstall a module? Connie Connie Logg, Network Analyst Stanford Linear Accelerator Center ph: 650-926-2879 "Happiness is found alon

Re: still confused on how to locally install perl modules without administrative privileges on windows (activestate 5.6.1 build 630)

2006-02-14 Thread Chas Owens
On 2/14/06, Wolcott, Kenneth A <[EMAIL PROTECTED]> wrote: > Hi; > > What is the correct path separator for "use lib" in a Perl program on > Windoze when I have multiple paths? Multiple "use lib" statements: use lib "/usr/local/perl"; use lib "/opt/perl"; use lib "~/perl"; > > What is the cor

  1   2   3   >