-
I tried to convert this sample DSL file and got this error:
Can't wrap my head around it. Why do I need some UI lib? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
You are not passing the output path, so it's trying to run GUI. Tkinter interface needs Tix package. TBH I made Tkinter interface mostly for Windows, since Python ships with Tkinter (and Tix) on Windows. I suggest using interactive command-line interface. |
Beta Was this translation helpful? Give feedback.
You are not passing the output path, so it's trying to run GUI.
Which can't since you don't have GTK nor Tkinter+Tix.
Tkinter interface needs Tix package.
Seems like not very easy to install on Mac
https://stackoverflow.com/questions/16797444/how-to-install-tix-on-mac-os-x
TBH I made Tkinter interface mostly for Windows, since Python ships with Tkinter (and Tix) on Windows.
I suggest using interactive command-line interface.
Look up "Interactive command-line interface" in README.md