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)
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)