- Write a Python application as normal.
- If the use of Python should not be evident to the end user, then a customized executable launcher should be coded as well. This executable needs to merely call the Python program's __main__ module via a hard-coded command.
If using a custom launcher, Python packages can be located in any location on the filesystem, since the launcher can be coded to indicate the specific search path when the program is launched.
- If the use of Python doesn't need to be so transparent, a simple batch file or shortcut file can directly call python.exe with the necessary arguments. If done this way, the use of Python will be evident, as the program's true name won't be used, but will appear to be the Python ...