Answer Posted / kuldip singh behal
doing make test and doing install <mod name> is only
possible if you are a root user or a trusted su user,
otherwise it is not at all possible to install the module in
perl.
but if you want to use that module without actually
installing it, it is possible. first download the tar file
of the module from the CPAN then untar the file in your
desired directory then see that where the .pm file lies copy
that .pm file to your desired location. now you have to see
whether that module is further using any module or not if
not then it is fine but if then you have to do the entire
process for the new module and provide the customized path
to the first module in the use or require, include the
desired pm file as using require lib or pushing the pm at
@INC manually.
push @INC <path to module>;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain chop?
Explain strftime() function in perl?
Explain the various characteristics of perl.
what is the function that is used to identify how many characters are there in a string?
Explain lists in perl?
You want to concatenate strings with perl. How would you do that?
Who created perl?
What does perl do in linux?
What is the easiest way to download the contents of a URL with Perl?
What is qq (double q)operator in perl?
Which operator in perl is used for the concatenation of two strings?
Explain the execution of a program in perl.
What does this symbol mean '->'?
Explain substr function in perl?
Explain 'grep' function.