Harry
Harry

Reputation: 59

How to stop running Xcode

Does anyone know how to force Xcode to stop running. I updated to 6.2 but now its not working correctly. I need to quit Xcode to either finish the update or uninstall and reinstall. Quite Xcode from the menu isn't available. Can't drag it to the trash because it says it is still running. Command Q doesn't stop it either. Sorry, new to Mac and advice is appreciated.

Upvotes: 4

Views: 9802

Answers (3)

MobileDev
MobileDev

Reputation: 171

you can also do killall XCode

It removes all Xcode processes.

Upvotes: 0

Quinn Keaveney
Quinn Keaveney

Reputation: 1604

You can quit any process with Xcode in its name from command line.

kill $(ps aux | grep 'Xcode' | awk '{print $2}')

Upvotes: 4

Donald
Donald

Reputation: 1200

Click the Apple logo in the top left and then "Force Quit", or alternatively command+option+escape. You should be able to close the application from here.

Upvotes: 9

Related Questions