79481008

Date: 2025-03-03 12:47:26
Score: 1.5
Natty:
Report link

Pyinstaller does not have functionality to execute something before the program start, however, I have a few solutions:

  1. Use --onedir. Using this flag makes the script start faster as there is nothing to unpack

  2. If you need to use the one file statement, use a batch file thats executed:

    @echo off

    echo Unpacking... Please wait.

    program.exe

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @echo
  • Low reputation (1):
Posted by: TRC Loop