in reply to Re^6: SQLite + free web hosting?
in thread SQLite + free web hosting?
Yup. You can adjust @INC by using env var PERL5LIB or by using the lib module.
For example, to install a module, I do
and I have the following in my ~/.bash_profileperl Makefile.PL PREFIX=~ LIB=~/lib/perl5 make make test make install
export PERL5LIB=~/lib/perl5
But you can use lib in your script instead of using PERL5LIB.
If it's a Windows host, you just grab a ppd file, unzip it (I think) and use use lib.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: SQLite + free web hosting?
by VMat (Novice) on Apr 14, 2009 at 00:00 UTC | |
|
Re^8: SQLite + free web hosting?
by VMat (Novice) on Apr 21, 2009 at 22:36 UTC | |
by ikegami (Patriarch) on Apr 22, 2009 at 00:26 UTC |