Unlike Macintosh, Windows doesn't come with PERL by default so I am writing the steps involved to install PERL on windows.
Steps:
- Before installing PERL on windows make sure its not already installed on your machine, for that open command prompt (cmd) and type perl -v. If you get output like 'perl' is not recognized as an internal or external command, operable program or batch file that means perl is not installed on your system and you need to follow the steps mentioned below.
- There are 2 flavors of PERL available, one is Active PERL and second is Strawberry PERL. I personally recommend Active PERL for windows b'coz of ppm-installer as it allows you to add alternative ppm repositories which will give you access to almost all useful perl modules available on CPAN.
- To install Active Perl you need to download the executable file from here. Download the executable file which is compatible with your version of windows (32 bit or 64 bit).
- Once you have downloaded the executable file, run the installer, accept the license click on next, then select the 2 checkboxes shown in the screenshot below
- Click on next and in next window click on Install, it will go thorough the installation process and in last window click on finish.
- To validate perl is successfully installed on your machine open your command prompt again and type perl -v, this time you will get the information about PERL as shown in the screenshot below.
If you are getting this information that means you are done with your PERL installation on Windows!

