in reply to Re^2: Perl @INC Error
in thread Perl @INC Error

Another solution is to call the script in the cron this way:

bash -l -c "perl /path/to/script.pl"

With that you assure that the environment is build like the one you have on the console, where you tested your perl script.

McA