If I use PyInstaller to create an executable from python code that contains a binary (e.g. a .pyc file in a wheel package) how does the binary become a part of the exe that is created? For example in scipy.spatial there is a python extension file named qhull.cp38-winamd64.pyc. When I try to run the .exe created by PyInstaller, attempting to execute the code:
from .qhull import * Will give error message "Importer: DLL load failed. module qhull cannot be found". The qhull module is the binary qhull.cp38-winamd64.pyc. -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/1511ffff-7249-45e3-888a-58d19e2178fcn%40googlegroups.com.
