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

gsparx has asked for the wisdom of the Perl Monks concerning the following question:

Hi monks, I have a question about PAR and pp

I have a program I would like to make distributable, so I can take it and run it on any system that has basic perl installed. Essentially I want to package all of the modules along with the script.

I am using the following modules

use WWW::Mechanize; use HTTP::Cookies; use Schedule::ByClock; use LWP::UserAgent; use Date::Parse; use Date::Calc qw(Delta_DHMS);

I used the tkpp gui to build an executable, but when I run it, it seems like the LWP::Protocol::https is getting left out, because it complains about not being able to access HTTPS. Does anyone have any idea what I should do? All of my modules were installed via the CPAN shell

Thanks