With the Perl environment under Linux, how do you develop Perl under Windows? Trust is something many developers dream of.
This article teaches you to install the Perl plugin in eclipse, so let's follow the steps together.
1. First install the PERL environment under Windows:
Download Address: Http://www.activestate.com/activeperl/downloads
FileName: Activeperl-5.16.1.1601-mswin32-x86-296175.msi
1.1 Click on the downloaded file to install it step-by-step
1.2 Detect if Perl is installed successfully:
1.2.1 "Start"-> "Run"-> "cmd" input perl-v, if there is a large paragraph of descriptive text, then congratulations, Windows Perl installed
1.2.2 If the hint is not an internal or external command, the installation does not automatically add the Perl file path to the environment variable automatically.
Specific settings: "Computer"-> "Properties"-> "Advanced system Settings"-> "Environment variables"
D:\develop\perl\bin;d:\develop\perl\site\bin # This is my Computer settings, please configure your own installation path
2. Install JDK
Download Address: http://www.oracle.com/technetwork/java/javase/downloads/index.html
I installed is: Jdk-8u5-windows-x64.exe
Note: If your computer is 32-bit, please download the 32 version of the JDK; If your computer is 64-bit, please download 64 jdk.
3. Install Eclipse
Download Address: http://www.eclipse.org/downloads/
I installed is: eclipse-java-kepler-sr2-win32-x86_64.zip
Note: If your computer is 32-bit, please download the 32 version of Eclipse; If your computer is 64-bit, please download 64-bit eclipse.
4. Install Eclipse plugin Epic
Download Address: Http://sourceforge.net/projects/e-p-i-c/files/latest/download?source=filesorg.epic.updatesite_0.6.35_20090521.zip
4.1 After decompression, copy the jar packages under the feature and plugins two folders to the corresponding feature and plugins directory under the Eclipse installation directory
4.2 and then restart Eclipse;
4.1.1 When you create a new project, you will see Perl project.
4.1.2 Write a test file test.pl, content: print "Hello world!\n"
More Wonderful content: http://www.bianceng.cnhttp://www.bianceng.cn/Programming/extra/