On Tue, 06 Mar 2007 10:29:36 -0800, Michael Goopta wrote:
> I am very new to perl. I could download perl.exe for my PC. But
> I do not have the library modules, such as time.pm etc.

For reference, you have many modules (in the core), but not some that you
want. 

> For this reason, when I use any "use <>" command (eg. use
> Time::localtime) the module is not found.

Try :

  use strict;
  use Exporter;
  use Carp;

Don't you have those?  If not, you have a broken perl.

Assuming you have the ActiveState Perl for Windows, check its
documentation for the PPM3 command (or PPM4 if that's what you have).

-- 
Peter Scott
http://www.perlmedic.com/
http://www.perldebugged.com/


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to