in reply to problem installing perl modules without root permission

In contrast to the typical Unix shell, Perl does not expand ~ to your home directory, so you'll have to do that yourself, i.e. something like '/home/username/...', or "$ENV{HOME}/..." (if HOME is set in your environment).

(for the sake of correctness: I updated the $ENV{HOME} part a couple of seconds after my initial post... thus glide's reply)

Replies are listed 'Best First'.
Re^2: problem installing perl modules without root permission
by moritz (Cardinal) on Feb 28, 2008 at 10:54 UTC
    ... or use glob to expand the tilde.
Re^2: problem installing perl modules without root permission
by glide (Pilgrim) on Feb 28, 2008 at 10:53 UTC
    Hi,

    in a unix environment, you can also use the $ENV{HOME}