Ok, for the Mac people out there, you can follow these steps...
(1) Open "Automator" on your Mac
(2) Create a new application, you can call it anything you like (I called mine RunSMAK)
(3) Crate a new step from "Run AppleScript"
(4) Your AppleScript should contain:
on run
tell application "Terminal"
activate
do script "cd /YOUR_DIRECTORY_TO_SMAK/; python smak.py"
end tell
end run
(5) See the install instructions for how to located your directory, but it will probably be something like: /Users/yourUsername/anaconda3/envs/smakenv/lib/python3.10/site-packages/smak.
(6) Save this application, and then you can drag it to your desktop and/or applications folder!
I did forget one thing! You'll want the "conda activate smakenv" in the script... so the script line above should be:
do script "conda activate smakenv; cd /YOUR_DIRECTORY_TO_SMAK/; python smak.py"