Quote:
Originally Posted by Haverlock
[Quest] perl error: Perl runtime error: Can't locate Symbol.pm in @INC (@INC con
tains: .) at (eval 3) line 1.
BEGIN failed--compilation aborted at (eval 3) line 1.
|
Well, I don't know what is causing your problem, but your perl @INC setting just seems to be set to '.', i.e. the current directory you are in. If you launch a command prompt and type:
perl -V
This will confirm what it is set to. Mine says this:
Code:
C:\>perl -V
Summary of my perl5 (revision 5 version 8 subversion 0)
<SNIP>
Compiled at Mar 31 2003 00:45:44
@INC:
C:/Perl/lib
C:/Perl/site/lib
.
C:\>
If your @INC is really just set to '.' and not C:/Perl/lib;C:/perl/site/lib, you could maybe try uninstalling/re-installing Perl.