Perl Packager (commonly abbreviated "pp") is a tool for creating a standalone executable from a perl program using PAR.
Questions tagged [perl-packager]
31 questions
1
vote
1 answer
perl par-packer exe file sleep() not working
hello.pl is a file which works fine:
print "Hello World";
sleep(5);
When I convert that to hello.exe using par-packer, window will sleep for 5 sec but won't print "Hello World" - which is actually printed after 5 sec and window exits.
Any solution…

SSh
- 179
- 2
- 13
1
vote
2 answers
Convertion Perl Script to Exe with PAR::Packer pp
I'm trying to convert a perl script to a executable file with PAR::Packer pp with the command (Windows 7 64 bits):
"pp -o teste.exe gmail_att.pl"
but i'm receiving the message:
"# Use of runtime loader module Module::Runtime detected. Results of…

marchiore
- 582
- 2
- 6
- 21
1
vote
2 answers
Why does my Perl PAR application immediately die?
This is probably a newbie question as I have just started using pp. I read the documentation on CPAN and tried to create an executable for my application. I use Camelbox and Tk on Windows XP, PAR::Packager version 0.991 (PAR version 0.994). To make…

Nele Kosog
- 117
- 1
- 11
1
vote
2 answers
Can PAR Packer generate stand-alone scripts?
I'm currently using the PAR Packer (pp) to package a couple of pl scripts such that they can be copied to a machine and "just work" without my client having to muck with CPAN.
Unfortunately, the PAR Packer doesn't work for deep dependencies. For…

Jono
- 908
- 9
- 13
0
votes
2 answers
CPAN Perl module installation fail
I am trying to install PP to compile Perl scripts into an EXE file, and I am using 64-bit Windows 7 and 32-bit ActiveState Perl. After typing
cpanm pp
My command prompt returns
--> Working on pp
Fetching…

user1006262
- 21
- 3
- 4
0
votes
1 answer
PERL do not run script after PAR
[root@localhost html]# rpm -q centos-release
centos-release-7-9.2009.1.el7.centos.x86_64
[root@localhost html]# httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built: Dec 13 2020 00:35:05
[root@localhost html]# perl -v
This is perl 5,…

Liandro Cos
- 65
- 11
0
votes
0 answers
Connecting PCOMM version 12 using office 365 - Class not registered error
I am able to connect to PCOMM version 12 using excel 2016. Suddenly MS Office upgraded to office 365 version. Now I am not able run macro as I am getting class not registered error. Kindly help on the issue as this will create serious impact in…

MNS CHANDRASEKARAN
- 45
- 6
0
votes
1 answer
Creating an executable program from a Perl script
I am trying to make an executable program from a finished perl script. I installed the PAR::Packer module without difficulty. However, I do not believe I am doing this properly. Below is the code inside the script I want to compile:
use…

storm5510
- 23
- 3
0
votes
1 answer
pp - PAR Packager , Can't locate strict.pm
I have a perl script called master.pl and it contains following lines of code
#!/usr/local/bin/perl
use strict;
system("perl /proj/scripts/slave.pl");
I made binary executable of master.pl using command :
pp -b -B -o master master.pl
I copy this…

HsPython
- 1
- 1
0
votes
1 answer
Auto replace of the exe file or the script/myscript.pl from the Server
So I deploy the PerlPacked exe tool to the users. I would like to run the self auto-replacement of the new Tool from the server after checking if there is new tool available.
1)
I know in windows, when a Program is Running, you can rename my.exe =>…

Aravind Nadumane
- 170
- 1
- 11
0
votes
1 answer
Get all dependencies for Par::Packer?
I'm using Par::Packer on OSX and Linux to create binaries for some applications that utilize Paws.
I'm calling pp like so:
pp -o build_cluster -x -c -I lib/ @ppdeps bin/build_cluster
ppdeps contains a list of modules that caused pp to fail because…

Roy Hubbard
- 53
- 1
- 7
0
votes
0 answers
perl: Scalar found where operator expected at script
cannot find answer in Google, nor figure it out myself.
Win7 64bit
This is perl 5, version 22, subversion 3 (v5.22.3) built for MSWin32-x86-multi-thread-64int from Active State
with modules List::BinarySearch and PAR::Packer installed with cpan
Idea…

Timo Karhu
- 1
- 1
0
votes
1 answer
Missing 'libexpat-1_.dll' error for executable made with pp
I made exe file with pp using Strawberry Perl, but when I run it on another machine, I get following error:
The program can't start because libexpat-1__.dll is missing from your computer. Try reinstalling the program to fix this problem.
I make…

flamey
- 2,311
- 4
- 33
- 40
0
votes
2 answers
Perl PP doesn't include Switch module
I created a perl script that includes the Switch module.
hello_world.pl
use strict;
use warnings;
use Switch;
use Data::Dumper;
my $var = "Hello World\n";
print Dumper($var);
if I launch perl hello_world.pl everything works fine. But if I pack my…

b1zzu
- 370
- 4
- 17
-1
votes
1 answer
How to resolve could not resolve dependency after Angular migrations?
I updated all my tools : npm, node, angular-cli
I was USING Angular 11 and now angular 13 in my project.
I use this link to migrate my Angular project step by step…

MasterSinge
- 665
- 3
- 9
- 22