You can get a list of DLLs being used by your code by putting: import psutil # Get this process i.e. Python. process = psutil.Process() # Print all loaded DLLs. for i in process.memory_maps(): print(i.path)
at the end of it then running your code normally (without PyInstaller). You can then compare that list to the DLLs in your pyinstaller-ed application. It’s tedious but it’s about as good as it gets on Windows. -- 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 visit https://groups.google.com/d/msgid/pyinstaller/61cc1ea1-17b4-4c7a-9641-6700f00fbad6n%40googlegroups.com.
