Hi all,
I have searched the internet off and on for a few years without luck trying to find an answer to this question. Is it possible to instruct PyInstaller to ship with Python's built in help() tool and not strip that out?
My tool provides both a CLI and GUI REPL which provides users with access to the tool's internals. The classes/functions/methods within the tool are fairly well documented for the most part, but because my users cannot call the built in `help()` function on anything I usually resort to just telling them to download the source files as reference.
For example of what I am talking about, here is a snippet from the REPL, showing how I am able to get help on a function when I'm using the 'development' version of my tool, which runs on pure Python:
However, attempting the same thing with the 'packaged' version of the tool shows the following error:
Is it possible to tell Pyinstaller to keep the Python help function?
Thanks,
Michael