On Sat, Feb 28, 2009 at 00:03, howa <howac...@gmail.com> wrote: snip > perl -MCPAN -e "install Archive::Zip" >>> Can't locate object method "install" via package "Archive::Zip" at -e line >>> 1. snip
Hmm, it looks like it is trying to use an indirect object method call (that is it is trying to do this Archive::Zip->install() instead of CPAN::install("Archive::Zip")). I wouldn't worry about it if I were you, I would just use the new(ish) cpan command instead: cpan Archive::Zip This does the same thing perl -MCPAN -e "install Archive:Zip" should do. -- Chas. Owens wonkden.net The most important skill a programmer can have is the ability to read. -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/