|
|
| Perl-Sensitive Sunglasses | |
| PerlMonks |
Re^3: Can't locate WWW/Mechanize/Firefox.pm in @INCby ww (Chancellor) |
| on Jan 16, 2013 at 23:27 UTC ( #1013659=note: print w/ replies, xml ) | Need Help?? |
|
Don't guess! The answer based on a guess has very little value as a response to a question from someone who's trying to help. Try the command suggested in Re: Can't locate WWW/Mechanize/Firefox.pm in @INC and then tell us what it does (more on this -- how to execute -- is below).And don't rely on external tools (either Check_INC.pl, which you don't show) nor where to tell you something about Perl that you can learn from your own Perl. $ perl -v ; perl -e "print join \"\n\", @INC" can both help, or, use this little piece of code, which appeared here recently: use ExtUtils::Installed; my $module; my $inst = ExtUtils::Installed->new(); my (@modules) = $inst->modules(); foreach $module (@modules) { say "$module"; } </c> The die $^X command gets executed from your command prompt, "C:\>" by preference (mine, an idiosyncracy) like this:
... but at a quick glance, it appears from the content of your second code block that you're executing Oracle's 5.8 version of Perl... in which case, perhaps you didn't ask (Active State?) to add 5.16 to your path. So check your path too... is there an instance of Perl that's not in an Oracle directory? Oh yes; @Annonymous Monk doesn't live here. But you can address Monks by name, by [name]... for example, to say your name to call you attention to this, I use that form of address: Pavan Renjal Update: http://www.perl.com/pub/2002/05/14/mod_perl.html (under the heading "use(), require(), do(), %INC and @INC Explained" may be illuminating.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||