Front page | perl.beginners |
Postings from January 2002
Re: modules
Thread Next
From:
Carlin Anderson
Date:
January 8, 2002 07:01
Subject:
Re: modules
Message ID:
F14cxtniFKULPEhGD1X0000321d@hotmail.com
Does it matter what version of perl is currently running (I am on 5.61), and
are there any concerns on using the automatic installation process against a
production environment? Does the automatic process pick the right version
of the module based on what is already installed?
Thanks
Carlin
----Original Message Follows----
From: <karl@rochstad.no>
To: TS <ebiz_user@yahoo.com>
CC: <beginners@perl.org>
Subject: Re: modules
Date: Fri, 5 Oct 2001 12:27:27 +0200 (CEST)
On Fri, 5 Oct 2001, TS wrote:
> I use perl 5.005_03.
> how do I find out what modules are installed ?
$perl -MCPAN -e autobundle
This will first search for all installed module. Then it will search the
cpan archive for updates...
Perhaps you need answere a few question if this is the very first time you
connect to CPAN. But it's easy. Just do it:-)
> and how do I add new modules ?(where are they
> available?).
$perl -e MCPAN -e 'install MODUL_NAME::xxx'
this will search the archive after module namedd MODUL_NAME::xxx and
install it. If this module need other modules to work ok. The installation
prossess will automatic fix this.
Karl
--
To unsubscribe, e-mail: beginners-unsubscribe@perl.org
For additional commands, e-mail: beginners-help@perl.org
_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com
Thread Next
-
Re: modules
by Carlin Anderson