This is a pretty standard recipe for any missing DLL problems. Edit your
spec file putting:
from PyInstaller.utils.hooks import collect_dynamic_libs
at the top then set the binaries argument to
collect_dynamic_libs("capstone"):
a = Analysis(...,
binaries=collect_dynamic_libs("capstone"),
...
Then rebuild using:
pyinstaller project-name.spec
--
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/d09c04c3-4af2-4775-b149-3fffc1135117n%40googlegroups.com.