I just found out that the Apple pre-installed Tcl/Tk versions are in 
/System/Library/Frameworks/Tcl.framework/Versions/8.5/Tcl and 
/System/Library/Frameworks/Tk.framework/Versions/8.5/Tk
When I uninstall ActiveTcl again, at first it doesn't work (I get back to 
my original situation).
But then when i simply modify the MacExcludeList() class as follows, the 
executable works fine!

   class MacExcludeList(object):
        def search(self, libname):
             if "/Tcl" in libname or "/Tk" in libname:
                return False
            return util.in_system_path(libname)

So it seems it needs to package the Tcl/Tk that is pre-installed on Mac OS 
X, but the original MacExcludeList object will prevent this by default...
Any ideas why this is happening?

-- 
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 post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pyinstaller?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to