in reply to Re: How to convert bunch of perl file + other dependent Input files Into a single executable
in thread How to convert bunch of perl file + other dependent Input files Into a single executable

Okk Thank you! But Still I did not get how It can help me to make the .exe on windows. Do I need to Include It my program as when I execute It stand alone It's givnig me below Error :
Can't locate IO/FDPass.pm in @INC (you may need to install the IO::FDP +ass module ) (@INC contains: C:/Perl64/site/lib C:/Perl64/lib .) at E:\Automation + Related\P erl Scripts - ALL\IMS_debugging\Perl_to_Exe\P2E.pl line 16. BEGIN failed--compilation aborted at E:\Automation Related\Perl Script +s - ALL\IM S_debugging\Perl_to_Exe\P2E.pl line 16.
Also I think PAR::Packer is already Installed on my system as when I tried -> ppm install PAR::Packer it showed Downloading ActiveState Package Repository dbimage...not modified No missing packages to install
  • Comment on Re^2: How to convert bunch of perl file + other dependent Input files Into a single executable
  • Download Code

Replies are listed 'Best First'.
Re^3: How to convert bunch of perl file + other dependent Input files Into a single executable
by marioroy (Prior) on Mar 03, 2017 at 11:43 UTC

    The modules or dependencies must be available in Perl. Remove the dependencies not needed, including MCE if not used. Basically, add only dependencies required by your application.

Re^3: How to convert bunch of perl file + other dependent Input files Into a single executable
by Anonymous Monk on Mar 03, 2017 at 09:05 UTC
      Hi.. It;s giving me the below Error :

      Can't locate Proc/Background.pm in @INC (you may need to install the Proc::Backg round module) (@INC contains: C:/Perl64/site/lib C:/Perl64/lib .) at E:\Automati on Related\Perl Scripts - ALL\IMS_debugging\Perl_to_Exe\ppsimple.pl line 38. BEGIN failed--compilation aborted at E:\Automation Related\Perl Scripts - ALL\IM S_debugging\Perl_to_Exe\ppsimple.pl line 38.

        Can't locate Proc/Background.pm in @INC (you may need to install the Proc::Backg round module)

        These messages are perl telling you that you're trying to run code which includes a module you don't have installed. This has nothing to do with packaging. Install the cpan modules. Read and understand the code you try to run, rather than just running it.