http://www.perlmonks.org?node_id=967496


in reply to pp - Can't locate loadable object for module Socket in @INC

To parrot this post

Its because you did not use the -x option (or -c option)

pp -x ...

pp -c ...

See also Re: Problem in creating exe using PAR module, Re^2: Packaging Perl Programs (is) Painful, Re: Building a Mojolicious app with PAR::Packer

You might want to try

Cava packager instead

Replies are listed 'Best First'.
Re^2: pp - Can't locate loadable object for module Socket in @INC
by Anonymous Monk on Apr 27, 2012 at 19:31 UTC
    Thanks, that solved my problem. And now that you've pointed it out, it seems obvious.