perl installation
2012-09-06 perl win32 activestate install moduleSteps I usually take when installing perl on new machine.
On Windows, I was always going with ActiveState perl. It has worked for me well and I never needed to look elsewhere.
The steps below were just recently tried when I updated to 5.16 release.
- Download package from http://activeperl.com …
- If there is previous version installed, make sure to rename or remove its directory. Installing over previous leads to many modules broken. Maybe somthing has changed since I did that, but had never enough courage to try again.
- Install downloaded package
- Run
ppm upg --install
to upgrade all modules shipped with it to latest version ppm inst Moose
,ppm inst dmake
,ppm inst mingw
,ppm inst App-cpanminus
- Ready to work
- All missing modules either install with ppm (
ppm inst Module::Name
) or cpanm (cpanm Module::Name
)