Hi,
You are the creator of Tile Forge right?
I'm using macOS and wanted to try it, I'm in no way a developer, but I'm trying to learn..
msx-tile-forge % ./msxtileforge.py
zsh: ./msxtileforge.py: bad interpreter: /bin/env: no such file or directory
This can easily be fixed.
#!/bin/env -S python3
to
#!/usr/bin/env -S python3
Also to make it run on my MacBook I needed to install these:
brew install tcl-tk
brew install python-tk@3.13
Hi,
You are the creator of Tile Forge right?
I'm using macOS and wanted to try it, I'm in no way a developer, but I'm trying to learn..
msx-tile-forge % ./msxtileforge.py
zsh: ./msxtileforge.py: bad interpreter: /bin/env: no such file or directory
This can easily be fixed.
#!/bin/env -S python3
to
#!/usr/bin/env -S python3
Also to make it run on my MacBook I needed to install these:
brew install tcl-tk
brew install python-tk@3.13