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


in reply to Missing module perl

a typical cpan module can be installed manually. so to fix this problem you may be able to get the module download files, copy them to the server, and install them by hand. each module comes in a tar.gz file for example, so that would be untarred and then read the README file in the directory created, which has the instructions for manual build and install of modules:
INSTALLATION To install this module type the following: perl Makefile.PL make make test make install
if you have a lot of modules to install you would prpbly want to write a script to do it

Replies are listed 'Best First'.
Re^2: Missing module perl
by ridwan (Initiate) on Aug 21, 2019 at 10:54 UTC

    too much depedency. and if i try running command like that result is false

      is your test machine the same as production? can you tar up a copy of the test machines module directory, ftp the tar file to the server, untar it. set the PERL5LIB environment variable to look in the module directory you just made.

        different. what's the meaning "tar file to the server" ?
        and what's the meaning "set PERL5LIB enivronment variable?"