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 perl unshift array function?
Elaborate on perl bite-wise operators.
What are the logical operators used for small scale operations?
What is an interpolation in perl?
How interpreter is used in perl?
How to replace perl array elements?
What are scalars?
How to renaming a file in perl programming?
In Perl we can show the warnings using some options in order to reduce or avoid the errors. What are that options?
What is the purpose of “_file_ literal” and “_line_ literal” in perl?
What are the purpose of close(), getc() and read() functions?
How will you create a file in perl?
Why to use perl?
What is the use of –w?
You want to connect to sql server through perl. How would you do that?