blargh555 wrote:I run modman.command, which returns this errorCode: Select all
ERROR: dlopen(/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_tkinter.so, 2): no suitable image found. Did find:
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload/_tkinter.so: no matching architecture in universal wrapper
modman.command is essentially just opening a terminal and running "python main.py". However your default python (OSX can have several, named python26, python27, ... with "python" pointing to one of them) doesn't seem to see tkinter.
Couldn't find an exact mention of your error. Here's what I found.
Article: StackOverflow - Can't import tkinter in python using OSX
Article: StackOverflow - import Tkinter fails with python on OSX
You may not care to fix this though, since you've found a workaround...
blargh555 wrote:Just to see if it will still work, I run main.py which sort of works.Code: Select all
File "/Users/MY_USERNAME/Desktop/Grognaks Mod Manager v1.7 Manix/main.py", line 894, in find_ftl_exe
if (os.path.isfile(os.join(app_path, "Contents", "Info.plist"))):
AttributeError: 'module' object has no attribute 'join'
See this post about the os.join bug.
This you will have to fix, but it's trivial.
blargh555 wrote:Here's a recording of me attemping to set up GMM.
Nicely done. That's the first video bug report I've seen.

That confirms that the python that PythonLauncher uses does see tkinter, but whatever runs *.py files by default doesn't see tkinter.