Lynn Oliver píše v St 14. 03. 2012 v 15:38 -0700: > I dont know what @executable_path resolves to at run time,
It should resolve to the directory containing myapp_exe_created_by_pyinstaller In onedir mode it is ./dist/appname directory. > but ../dist/appname also contains a copy of Tcl and tk: > -rwxr-xr-x 1 lynn lynn 2107080 Mar 14 14:45 Tcl -rwxr-xr-x 1 lynn > lynn 2920948 Mar 14 14:45 tk > > I'm at a loss at to what else to look at right now, so any suggestions > would be welcomed. What are the depencies of files? @executable_path/Tcl (compatibility version 8.5.0, current version 8.5.11) @executable_path/Tk (compatibility version 8.5.0, current version 8.5.11) otool -L ./dist/appname/Tcl otool -L ./dist/appname/Tk What architecture is compiled your _tkinter.so file for? i386 or x86_64? There could be mismatch in the architecture of _tkinter.so, Tcl, Tk or the created executable. Please try commands: $ file _tkinter.so $ file Tcl $ file Tk $ file appname_executable -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
