Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Other PyInstaller examples

Use this to see where does the packaged version of our code look for modules:

import sys

print(sys.path)

Use this to see how to pass command line parameters to the packaged exe:

import sys

print(sys.argv)