Manual installation of a Perl Module

Use this recipe for manually installing perl modules: tar zxf Digest-SHA1-2.13.tar.gz cd Digest-SHA1-2.13 perl Makefile.PL make make test make install Note that some distributions will have a Build.PL file instead of Makefile.PL. In that case use this recipe: tar zxf … cd … perl Build.PL ./Build ./Build test ./Build install (You may be able to … Read more