Yes your changes to the spec file were exactly what I meant. Hmm - running short of ideas. I've never had an issue caused by pyd files - I think PyInstaller handles them OK.
This block at the top of the traceback: import search # PyInstaller PYZ > # caris not found in PYZ > # bytecode is stale for 'caris' > # code object from C:\Program Files\CARIS\BASE > Editor\5.3\python\3.5\caris\__init__.py > # caris._py_caris not found in PYZ > That looks like it's still trying to run the original caris and didn't include it at build time. Try putting your `sys.path.insert(0, path)` line at the top of your spec file, before the `a = Analysis(...)` bit. Also could you translate the following to English. I think I know what it says but I'm not sure. > _call_with_frames_removed > ImportError: DLL load failed: Impossível localizar o procedimento > especificado. > Brénainn -- 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/459a6356-308f-4167-aab5-88a4b72972da%40googlegroups.com.
