http://qs321.pair.com?node_id=774666


in reply to Re^2: Perl modules confusion
in thread Perl modules confusion

Which of those paths do I need to change...and more importantly..how?
way 1)
unshift(@INC, '<path to your self-made local folder where the perl modules are installed>')

way 2)
use lib '<path to your self-made local folder where the perl modules are installed>'

way 3)
perl -I<path to your self-made local folder where the perl modules are installed>' <your perl program>

see How do I add a directory to my include path (@INC) at runtime?
Tutorials is the best place to start in perlmonks, if you are a newbie.
i started from Categorized Questions and Answers and Tutorials


Vivek
-- 'I' am not the body, 'I' am the 'soul', which has no beginning or no end, no attachment or no aversion, nothing to attain or lose.

Replies are listed 'Best First'.
Re^4: Perl modules confusion
by umeboshi (Acolyte) on Jun 25, 2009 at 12:01 UTC
    Thanks a lot for your answers!