Image-ExifTool - Re: Can't locate Image ExifTool.pm in @INC

Posted on Fri Oct 10 22:49:18 2008 by exiftool in response to 9020 (See the whole thread of 2)
Re: Can't locate Image ExifTool.pm in @INC
Hi Jean,

You either have to install the ExifTool libraries in the standard location (ie. somewhere in the @INC directories listed in your post), or add the location to the include path, something like this:

#!/usr/bin/perl BEGIN { unshift @INC, "PATH_TO_DIRECTORY_CONTAINING_LIBRARIES" } use Image::ExifTool;

You should be able to add "Image/ExifTool.pm" to the path you add to find the ExifTool module.

- Phil
Write a response