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
What is stdin in perl?
Explain chop?
How can arrays be tied?
How do I sort a hash by the hash key?
Comment on the scope of variables in perl.
What is the use of -w, -t and strict in Perl?
How many loop control keywords are there in perl?
what are the two ways to get private values inside a subroutine or block?
What happens to objects lost in "unreachable" memory, such as the object returned by Ob->new() in `{ my $ap; $ap = [ Ob->new(), $ap ]; }' ?
How to know whether a key exists or not in perl?
how to get back up from private character editor which is saved in the format of .udf
How to find the length of an array in perl?
Explain about typeglobs?
In Perl we can show the warnings using some options in order to reduce or avoid the errors. What are that options?
Write a program to show the process of spawning a child process