How do you check to see which version of EmbPerl (embedded perl) you have?
Try:
user# perl -MHTML::Embperl -e'print "$HTML::Embperl::VERSION\n";'
John M.
http://www.rockfloat.com/board/post/?id=563
March 27, 2007 @14:34
(Replies: 0)
how do you check to see what modules you currently have installed?
try this:
root# perldoc perllocal
you can also check to see if a given module is installed by doing:
root# perl -MFoo::Module -e1
--> if it errors.. then the module is not installed
John M.
http://www.rockfloat.com/board/post/?id=159
July 15, 2003 @20:22
(Replies: 0)
how do you check to see what version of perl you are running?
root# perl -v
John M.
http://www.rockfloat.com/board/post/?id=13
May 12, 2003 @23:56
(Replies: 0)
how do you change the list of servers that cpan will fetch from?
can you just edit this file?
/usr/libdata/perl/5.00503/CPAN/Config.pm
John M.
http://www.rockfloat.com/board/post/?id=296
May 12, 2003 @21:28
(Replies: 0)
how do you restart cpan.. so it asks you all the questions again when you first start it?
try this:
root# perl -MCPAN -e shell
cpan> o conf init
John M.
http://www.rockfloat.com/board/post/?id=310
May 12, 2003 @21:14
(Replies: 0)
Re: Re: how do you add modules to perl?
then you can install a module kinda like this:
root# perl -MCPAN -e 'install Chocolate::Belgian'
root# perl -MCPAN -e 'install File::ReadBackwards'
or to upgrade CPAN itself...
root# perl -MCPAN -e 'install Bundle::CPAN'
John M.
http://www.rockfloat.com/board/post/?id=377
May 12, 2003 @20:14
(Replies: 0)
Re: how do you add modules to perl?
start by doing:
root# perl -MCPAN -eshell
this will configure perl CPAM, just take all the defaults it gives you.
http://www.rockfloat.com/board/post/?id=420
April 26, 2002 @20:53
(Replies: 0)
how do you add modules to perl?
I'm trying to install MIMEDefang and it needs certain perl modules...
John M.
http://www.rockfloat.com/board/post/?id=18
April 26, 2002 @20:52
(Replies: 2)