in reply to Installing .pm module with Strawberry Perl (Windows)
In case of it being just a .pm file, just copy it anywhere where perl is looking ( @INC ).> perl Makefile.pl > make > make test > make install
Or create "lib" directory next to your script andperl -e 'print join "\n", @INC;'
use lib "lib";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Installing .pm module with Strawberry Perl (Windows)
by ikegami (Patriarch) on Oct 30, 2017 at 17:35 UTC | |
|
Re^2: Installing .pm module with Strawberry Perl (Windows)
by choroba (Cardinal) on Oct 30, 2017 at 17:15 UTC | |
by holli (Abbot) on Oct 30, 2017 at 17:23 UTC |