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
How can we create perl programs in unix, windows nt, macintosh and os/2 ?
what are the steps involved in reading a cgi script on the server?
What does next statement do in perl?
Explain perl one-liner?
What does last statement do in perl?
How do I replace every TAB character in a file with a comma?
List the files in current directory sorted by size ?
How to print escaping characters inside a string in perl?
When would `local $_' in a function ruin your day?
What is the syntax used in Perl grep function?
Explain strftime() function in perl?
What is a chop() function in perl?
Explain what is STDIN, STDOUT and STDERR?
Explain a tell function in perl?
Differentiate use and require?