in reply to Re^3: Help - Install XML-LibXML on windows
in thread Help - Install XML-LibXML on windows
Also: PERL makes Windows Executables!
1.) Install Strawberry PERL in Windows (Not ActiveState PERL) - Strawberry has a C/C++ Compiler and CPAN and PPM support!
2.) Open a command prompt and add PAR-Packer: (If you use a proxy server, set environment: HTTP_proxy http://YourProxy:8080)
cpan
install PAR::Packer
3.) Create a fully distributable Win32 binary EXE using pp and your current PERL scripts from the command line:
pp -o hello.exe helloworld.pl
4.) Add PERL Tk via PPM command line to create Windows GUI programs
ppm install Tk
|
|---|