I am simply trying to install some Perl modules. I install Spiffy-0.30 into my local directory using
perl Makefile.PL PREFIX=~/lib LIB=~/lib
and that works fine. Then I try to install Test-Base-6.0 which Spiffy is a prerequisite using the same code and it states I am missing Spiffy. Is there a way to instruct Perl on what directory to look for the prerequisites??
Since
~libis not the default location for Perl modules, you need to tell Perl where to find it. You can do that with thePERL5LIBenvironmental variable. Here is the terminal output from my Ubuntu box.