Running into problems with Google Antigravity? This comprehensive troubleshooting guide covers every common issue, from installation problems to AI response errors. Bookmark this page for quick solutions.
Before diving deep, run through this quick checklist:
□ Is Antigravity updated to the latest version?
□ Is your internet connection stable?
□ Are your API credentials valid?
□ Is there sufficient disk space?
□ Are system requirements met?
Need fresh install? Follow our complete installation guide.
Symptoms:
Solutions:
# Allow app from identified developers
sudo spctl --master-disable
# After installation, re-enable
sudo spctl --master-enable
xattr -dr com.apple.quarantine /Applications/Antigravity.app
# Remove all Antigravity data
rm -rf /Applications/Antigravity.app
rm -rf ~/Library/Application\ Support/Antigravity
rm -rf ~/.config/antigravity
# Download fresh installer
Symptoms:
Solutions:
Run as Administrator:
Disable SmartScreen Temporarily:
# Run in PowerShell as Admin
Set-MpPreference -EnableSmartScreen $false
# Reinstall, then re-enable
Set-MpPreference -EnableSmartScreen $true
Symptoms:
Solutions:
sudo apt update
sudo apt install libfuse2 libgtk-3-0 libnotify4 libnss3 libxss1 libxtst6 xdg-utils
chmod +x Antigravity-*.AppImage
./Antigravity-*.AppImage
Symptoms:
Solutions:
# macOS/Linux
rm -rf ~/.config/antigravity/Cache
rm -rf ~/.config/antigravity/GPUCache
# Windows
rmdir /s /q %APPDATA%\antigravity\Cache
# Backup first
mv ~/.config/antigravity ~/.config/antigravity.backup
# Restart Antigravity - creates fresh config
# Disable GPU acceleration
antigravity --disable-gpu
# macOS/Linux
cat ~/.config/antigravity/logs/main.log
# Windows
type %APPDATA%\antigravity\logs\main.log
Symptoms:
Solutions:
{
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/.git": true,
"**/build": true
}
}
antigravity --max-memory=8192
Symptoms:
Solutions:
Check API Status:
Verify API Key:
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.antigravity.google/v1/health
Reset Connection:
Check Firewall:
ping api.antigravity.google
ping gemini.googleapis.com
Symptoms:
Solutions:
Rebuild Project Index:
Check Context Settings:
{
"ai.contextWindow": "large",
"ai.includeOpenFiles": true,
"ai.includeGitHistory": true
}
Learn effective prompting in our beginner's prompt guide:
Bad: "Fix the bug"
Good: "Fix the authentication bug in src/auth/login.ts
where users can't login with valid credentials.
The error occurs at line 45."
For comprehensive MCP setup, see our MCP servers guide.
Symptoms:
Solutions:
# Check config syntax
cat ~/.config/antigravity/mcp.json | jq .
# Run server directly
npx -y @anthropic-ai/mcp-github
# Check for errors in output
# Verify environment variables
echo $GITHUB_TOKEN
echo $POSTGRES_CONNECTION_STRING
tail -f ~/.config/antigravity/logs/mcp-*.log
Browse working configurations in our MCP directory.
Symptoms:
Solutions:
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-github"],
"timeout": 60000
}
}
}
npm cache clean --force
npx -y @anthropic-ai/mcp-github@latest
Symptoms:
Solutions:
{
"ai.realtimeSuggestions": false,
"editor.quickSuggestions": false,
"ai.backgroundAnalysis": false
}
{
"search.maxResults": 1000,
"ai.maxFilesToAnalyze": 100
}
Symptoms:
Solutions:
Clear Memory:
Reduce Open Files:
Adjust Memory Settings:
{
"ai.maxContextSize": "medium",
"editor.maxTokensPerFile": 50000
}
For complete Agent Mode guidance, see our Agent Mode mastery guide.
Symptoms:
Solutions:
Cancel and Retry:
Check Agent Logs:
cat ~/.config/antigravity/logs/agent.log | tail -100
Instead of: "Build a complete user authentication system"
Try: "Create the login form component"
Then: "Add the authentication API endpoint"
{
"agent.confirmEachStep": true,
"agent.maxStepsWithoutConfirmation": 3
}
Symptoms:
Solutions:
git stash # Before agent work
# Run agent
git diff # Review changes
git stash pop # If needed
"Only modify src/components/Header.tsx.
Do not touch any other files.
Add a logout button next to the profile menu."
{
"agent.dryRun": true
}
Symptoms:
Solutions:
{
"http.proxy": "http://proxy.company.com:8080",
"http.proxyStrictSSL": false
}
export HTTP_PROXY=http://proxy.company.com:8080
export HTTPS_PROXY=http://proxy.company.com:8080
export NO_PROXY=localhost,127.0.0.1
Symptoms:
Solutions:
# macOS
brew install ca-certificates
# Ubuntu
sudo apt update && sudo apt install ca-certificates
Before contacting support, gather:
# System info
antigravity --version
uname -a
node --version
# Logs
cat ~/.config/antigravity/logs/main.log
cat ~/.config/antigravity/logs/ai.log
cat ~/.config/antigravity/logs/mcp-*.log
| Issue | Quick Fix |
|---|---|
| Won't start | rm -rf ~/.config/antigravity/Cache |
| AI not responding | Check internet, reset connection |
| Slow performance | Disable unused extensions |
| MCP server error | Check credentials in mcp.json |
| Agent stuck | Cancel, reduce task complexity |
| High memory | Close tabs, clear cache |
Last updated: December 2025
Related Articles: