-
Hi, Forgive my ignorance but I can't work out how to install your app. This is what I've tried so far: Last login: Thu Nov 25 13:48:46 on ttys000
hl@workbook snowman % go version
go version go1.17.3 darwin/amd64
hl@workbook snowman % file snowman-darwin-amd64
snowman-darwin-amd64: Mach-O 64-bit executable x86_64
hl@workbook snowman % ./snowman-darwin-amd64
zsh: permission denied: ./snowman-darwin-amd64 Do I need to install from source? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
Abbe98
Nov 26, 2021
Replies: 1 comment 4 replies
-
Hi @hughlilly, On Mac you will need to mark a file as an executable before running it. https://support.apple.com/guide/terminal/make-a-file-executable-apdd100908f-06b3-4e63-8a87-32e71241bab4/mac Following the permission change you can run it by Cheers, |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
hughlilly
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @hughlilly,
On Mac you will need to mark a file as an executable before running it.
https://support.apple.com/guide/terminal/make-a-file-executable-apdd100908f-06b3-4e63-8a87-32e71241bab4/mac
https://stackoverflow.com/questions/12276507/run-script-on-mac-prompt-permission-denied
Following the permission change you can run it by
./snowman-darwin-amd64
.Cheers,
Albin