Regarding imports, in the discussion on an issue at github[1], it was 
pointed out how the bootloader sets up sys.path,

# Append lib directory at the end of sys.path and not at the beginning.

# Python will first try necessary libraries from the system and fallback

# to the lib directory.


This would mean that your program imports whatever is locally installed, if 
any, in preference to what was embedded in the executable. In a dev 
environment, they should be the same. Whatever PyInstaller found while 
bundling, should still be there. However, is there any possibility that 
when you are testing the bundled app, it is picking up a different version 
of some lib?

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pyinstaller.
For more options, visit https://groups.google.com/d/optout.

Reply via email to