Hmm, I have the same problem:
ppmprofile.bat save is not supported for PPM4 yet...Here's what I intend to try as a workaround when I upgrade to 5.10. Any suggestions for improvement welcome.
(1) At the command line, run this command:
ppm list --fields name > C:/my_modules.txt(2) Uninstall 5.8, install 5.10 (as per the ActiveState instructions that you quote).
(3) Run the following script:
open my $fh, '<', 'C:/my_modules.txt' or die "Oops: $!\n"; while ( <$fh> ) { chomp; print "Installing $_...\n"; system ( "ppm", "install", $_ ); }
A bit of a kludge? but better than trying to do the whole thing manually???
In reply to Re^3: Experience with ActivePerl 5.10 vs. 5.8 PPM incompability
by Not_a_Number
in thread Experience with ActivePerl 5.10 vs. 5.8 PPM incompability
by ady
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |