Unless they've taken steps to hide it you can run the Caris python 
interpreter just by searching inside the Caris installation for python.exe 
and running it. But if you can run the Caris modules from your normal 
Python then there is no need. 

I've tried googling around for what might trigger a *The specified 
procedure could not be found* Exception and it looks like it could be 
almost anything. One of the more likely looking ones is missing 
dependencies. Try running the following snippet in a fresh console. Don't 
use a console in Spyder for this because IPython imports lots of extra 
stuff on startup - just run from command. :
import sys
sys.path.insert(0, "C:/Program Files/CARIS/BASE Editor/5.3/python/3.5/")
import caris
print(sys.modules.keys())
This should list all the modules Caris uses. Post that list here. Hopefully 
there is something in there that needs to be added to PyInstaller's 
*hiddenimports* option.

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 pyinstaller+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyinstaller/7d79bc19-8129-4061-9932-c40fdbb44e40%40googlegroups.com.

Reply via email to