in reply to Lingua::Stem install woe
and then run something like the following in that directory:ppm rep add temp_repository file://C:/Path/to/current/directory
This will use ppm to install all the packages without worrying about the dependencies; it'll fail on the Lingua-Stem-Snowball-Da package for the reason you found, but at least the others will get installed.use strict; opendir(my $dir, '.'); my @ppds = grep {/\.ppd$/} readdir $dir; closedir $dir; foreach my $p (@ppds) { my @args = ('ppm', 'install', $p, '--nodeps'); print "@args\n"; system (@args); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Lingua::Stem install woe
by sailortailorson (Scribe) on Apr 12, 2007 at 01:13 UTC |