http://www.perlmonks.org?node_id=1072565


in reply to i cannot install PDF::API2

I notice that you said you had the line:

use PDF::apI2

Perl is case sensitive, so you must instead use:

use PDF::API2;

I'm not saying this is your only problem, but it would also be a show-stopper.

If you want to verify that you have installed PDF::API2, you could go to a terminal window and type:

perldoc PDF::API2

You would then be able to view the documentation for that module.


*My* tenacity goes to eleven...