in reply to Win32::Screenshot in @INC

This error typically means that the module wasn't properly installed, for example only the .pm files copied into the module path, but not the other necessary files.

How did you install the module?

Replies are listed 'Best First'.
Re^2: Win32::Screenshot in @INC
by ganeshabelavadi (Novice) on Jul 26, 2011 at 04:49 UTC

    Initially I've installed PERL.

    Then through CPAN I've installed Win32::CaptureIE, I've used the following command

    CPAN> Install Win32::CaptureIE

    But Still It was giving error like @INC few .pm files were not found, then I've manually copied the required files into this location C:/Perl/lib C:/Perl/site/lib since(@INC contains: C:/Perl/lib C:/Perl/site/lib .)

      The error message you posted says states that Win32::Screenshot isn't installed. This module is a dependencie of Win32::CaptureIE. Have you tried installing that module?

      You may want to check your cpan configuration, you can set it to automatically install dependencies, something like:

      o conf prerequisites_policy follow o conf commit