5% assure discount from here only

Saturday, February 5, 2011

(19) Setting Up Perl Development Environment in Windows

Solution :

Basically PERL runs on Linux by default, but in Today's world peoples are using Microsoft Windows on Huge basis because of its functionality, features, GUI and of some many reasons. Here are some steps which are very useful in setting up PERL development in Microsoft Windows. We will use Windows environment through tutorial series. For your convenience, we will use all free development tools. You can also find such the same free tool in your platform such as Linux or Mac.

Download and install ActivePerl


You first need to download ActivePerl the latest version from http://www.activestate.com/activeperl/. The file we downloaded at the time of this tutorial being written was ActivePerl-5.10.0.1004-MSWin32-x86-287188.msi. You can also find the installation files for other systems and versions via following link

http://www.activestate.com/activeperl/downloads/

To install ActivePerl just double click on the installation file. It will guide you through steps with options. Just make your own choices and click next.

To check you installation successfully, you can open command line through Run window and type following command:

perl -version.

If you installed Perl successfully, you will see the version and copyright information.

Download and install Perl IDE: Open Perl IDE

Open Perl IDE stands for integrated development environment. It includes source code editor with syntax highlight, interpreter, and debugger tool. The IDE helps you a lot while develop Perl Program. We highly recommend that you should use Open Perl IDE because it is free, simple, intuitive and easy to use.

You can download the Open Perl IDE the latest version via following link: http://open-perl-ide.sourceforge.net/

With Open Perl IDE you don’t need to install to run it. First you unzip the downloaded file. (If you don’t have zip tool you can download a free tool called 7-ZIP from http://www.7-zip.org/ ). To launch the Open Perl IDE, you can open the unzip folder, find the file PerlIDE.exe, double click on it.

Now you are ready to start learning Perl!

2 comments:

  1. Try Padre IDE. It is not easy to install if you are not using Strawberry, but it is very powerful.

    ReplyDelete
  2. Further to what chorny said, I've found that using Strawberry Perl is a lot nicer than AS Perl as it comes with a compiler tool chain so you can install about 99% of CPAN just as you would else where.

    ReplyDelete