in reply to DBD::CSV - how to install? (FTP only)
If you only have FTP access, I assume you can't write to the perl library directories, so you could upload other libraries to $ENV{HOME}/perl/libs and put
Note: Any libraries with XS code may have problems, since they have to be compiled locally, then uploaded. This should work for all perl-only modules.
Update: Changed ' to " because variable is used.
at the top of your programs.use lib "$ENV{HOME}/perl/libs";
Note: Any libraries with XS code may have problems, since they have to be compiled locally, then uploaded. This should work for all perl-only modules.
Update: Changed ' to " because variable is used.
- Tom
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: DBD::CSV - how to install? (FTP only)
by lwicks (Pilgrim) on Dec 13, 2003 at 23:08 UTC | |
Re: Re: DBD::CSV - how to install? (FTP only)
by lwicks (Pilgrim) on Dec 13, 2003 at 23:11 UTC |
In Section
Seekers of Perl Wisdom