Unable to open Antigravity or Antigravity IDE

Hello,

Yesterday I was able to use both Antigravity or Antigravity IDE with absolutely no problems.

However today when I try to use the IDE I get the Following “Antigravity server crashed unexpectedly. Please restart to fully restore AI features.” - I have restarted and uninstalled and reinstalled with no Joy

With the Antigravity App I just get “Language server exited unexpectedly (code=1, signal=null)” tried all the usual trouble shooting, Restarting, re-installing etc.

I’m using an MacBook Pro with an Intel Processor.

Any thoughts?

Is there seriously no fix for this? I have the same issue on windows 10 i5-12600k

Hey, just got the same issue, but on Windows. Came from some sort of conflict while reinstalling the thing ; the install process tried to create an already existing directory (from a previous install) and crashed the whole thing. Just had to remove the file manually and Antigravity is now back on track.

For me it was the .gemini directory found in my user directory. Got Gemini to make you a step by step guide to debug for that specific issue on mac :

Step 1: Find the Log File (To confirm the error)

  1. Open Finder and press Cmd + Shift + G to bring up the “Go to Folder” search bar.

  2. Paste the following path and press Enter: ~/Library/Application Support/Antigravity/logs/

  3. Open main.log with TextEdit.

  4. Scroll to the bottom and look for this specific crash line:

    Language server failed - mkdir /Users/username/.gemini: File exists

Step 2: Remove the Culprit

  1. Open your Terminal (via Spotlight Search: Cmd + Space > Terminal).

  2. Run this command to forcefully delete the conflicting hidden directory:

    Bash

    rm -rf ~/.gemini
    
    

Step 3: Relaunch

  • Open Antigravity again. The application will automatically recreate a clean .gemini folder and start up without issues.

Hope that helps.