SebLague / Digital-Logic-Sim

https://sebastian.itch.io/digital-logic-sim
Other
3.53k stars 433 forks source link

Program does not work on MacOS 12.6.2 #165

Open jonasisozen opened 1 year ago

jonasisozen commented 1 year ago

I couldn't get the program to launch on my M1 Macbook Air 2020. I tried everything that I know. I tried to launch it with rosette and tried to unblock it in Security & Privacy but no luck :( I really lıke this project and would like to use it on my school laptop

GreenWhisper342 commented 1 year ago

This worked for me: https://stackoverflow.com/questions/64842819/cant-run-app-because-of-permission-in-macos-v11-big-sur/64895860#64895860

In particular, this command worked for me: sudo xattr -d -r com.apple.quarantine /Applications/YourAppName.app

Also remember to open it using right click and then open in the menu, instead of double-clicking the icon

BraveCaperCat2 commented 1 year ago

this seems to be an issue for apps in general and not this specific app - this should be closed as "Not an issue"

nikage commented 1 year ago

This worked for me: https://stackoverflow.com/questions/64842819/cant-run-app-because-of-permission-in-macos-v11-big-sur/64895860#64895860

In particular, this command worked for me: sudo xattr -d -r com.apple.quarantine /Applications/YourAppName.app

Also remember to open it using right click and then open in the menu, instead of double-clicking the icon

chmod -R 755 /Applications/Digital\ Logic\ Sim.app helped in my case.

NOTE: prior to that I ran: sudo xattr -d -r com.apple.quarantine /Applications/Digital\ Logic\ Sim.app Not sure if it affected anything.

PS: @GreenWhisper342, thanks for the hint btw.

brunobasto commented 1 year ago

chmod -R 755 /Applications/Digital\ Logic\ Sim.app

worked for me too! thank you @nikage