udacity / self-driving-car-sim

A self-driving car simulator built with Unity
http://udacity.com/self-driving-car
MIT License
3.9k stars 1.5k forks source link

Release 1.4: The application “term2_sim.app” can’t be opened #40

Closed cesare-montresor closed 5 years ago

cesare-montresor commented 7 years ago

I downloaded the release 1.4, but I wasn't able to run it and I was prompt with this error "The application “term2_sim.app” can’t be opened." For some reason it was missing the +x flag to the main binary, a quick fix is to run the following in a terminal:

chmod +x /Applications/term2_sim.app/Contents/MacOS/term2_sim_mac

maybe just an issue with my configuration.

laventura commented 7 years ago

I had the same problem, with simulator version 1.45.

I also had to execute the same command to get it working:

chmod +x <Application_Dir>/term2_sim_mac/term2_sim.app/Contents/MacOS/term2_sim_mac
Logic4Twisted commented 7 years ago

The same problem here with 1.45 version on Sierra version 10.12.5

mvirgo commented 5 years ago

Closing since no further comments; often in Mac or Linux you need to add chmod u+x (or just +x as you have noted) for binary files to be executable.