How can I install Perl module without using CPAN.pm?
问题 Is it possible? 回答1: If you download the source code, and read the README file. This will probably tell you you should do perl Makefile.PL make make test make install or perl Build.PL ./Build ./Build test ./Build install 回答2: If you download the source code, it will generally have a Makefile.PL. You run "perl Makefile.PL; make; make test; make install" and it will build and install for you. Obviously if you're not using CPAN.pm, you're going to have to deal with dependencies yourself. Also,