Google Antigravity Troubleshooting Guide

Experiencing issues with Google Antigravity? This comprehensive troubleshooting guide covers the most common problems users encounter and provides step-by-step solutions to get you back to building faster with AI agents.

Last Updated: November 2025 | Reading Time: 12 minutes

1. Installation & Setup Issues

Problem: Installation Fails on Windows

Error: "Installation failed" or "Access denied" during setup

Solutions:

  • Run the installer as Administrator (right-click → Run as administrator)
  • Disable antivirus temporarily during installation
  • Ensure you have at least 2GB free disk space
  • Check Windows Defender isn't blocking the installer
  • Install Visual C++ Redistributable if missing

Problem: macOS Installation Blocked

Error: "App can't be opened because it is from an unidentified developer"

Solutions:

  • Go to System Preferences → Security & Privacy → General
  • Click "Open Anyway" for Google Antigravity
  • Alternatively: Right-click app → Open → Click "Open"
  • For M1/M2 Macs: Ensure you downloaded the ARM version

Problem: Linux Dependencies Missing

Error: "Missing libraries" or dependency errors

Ubuntu/Debian:

sudo apt update
sudo apt install libgtk-3-0 libnotify4 libnss3 libxss1 \
                 libxtst6 xdg-utils libatspi2.0-0 libdrm2 \
                 libgbm1 libasound2

Fedora/RHEL:

sudo dnf install gtk3 libnotify nss libXScrnSaver \
                 libXtst xdg-utils at-spi2-core alsa-lib

2. Chrome Extension Problems

Problem: Extension Not Connecting

Symptom: Browser integration features don't work, agents can't interact with web pages

Solutions:

  • Verify extension is installed: chrome://extensions
  • Ensure extension is enabled (toggle should be blue)
  • Check that Antigravity desktop app is running
  • Click extension icon → "Reconnect to Antigravity"
  • Restart Chrome completely (close all windows)
  • Check firewall isn't blocking localhost connections

Problem: Extension Permissions Denied

Error: "Unable to access page" or permission warnings

Solutions:

  • Grant all requested permissions during installation
  • Check extension permissions: chrome://extensions → Details → Permissions
  • Enable "Allow access to file URLs" if working with local files
  • For incognito mode: Enable "Allow in incognito"
  • Some enterprise sites block extensions - check with IT

Problem: Extension Crashes or Freezes

Solutions:

  • Remove and reinstall the extension
  • Clear extension cache: chrome://extensions → Remove → Reinstall
  • Update Chrome to the latest version
  • Disable other conflicting extensions temporarily
  • Check Chrome Task Manager (Shift+Esc) for memory issues

3. Authentication & API Key Errors

Problem: "Invalid API Key" Error

Solutions:

  • Verify your API key is correct (check for extra spaces)
  • Ensure you're using the correct key for your model (Gemini, Claude, or GPT)
  • Check if your API key has expired or been revoked
  • Regenerate API key from the provider's dashboard
  • Clear saved credentials and re-authenticate

Problem: Google Sign-In Fails

Error: "Authentication failed" or redirect loop

Solutions:

  • Clear browser cookies and cache
  • Disable third-party cookie blocking for antigravity.google
  • Try signing in with an incognito window
  • Check if corporate VPN is interfering with OAuth
  • Ensure popup blocker isn't blocking the auth window

Problem: Session Expired Repeatedly

Solutions:

  • Check system clock is accurate (OAuth is time-sensitive)
  • Enable "Keep me signed in" option
  • Whitelist *.antigravity.google in your firewall
  • Update to the latest version of Antigravity

4. Rate Limiting & Quota Issues

Problem: "Rate Limit Exceeded" Error

Error: "Too many requests" or 429 errors

Solutions:

  • Wait: Rate limits typically reset after 60 seconds to 1 hour
  • Reduce agent count: Limit concurrent agents to 2-3 instead of 5+
  • Use async mode: Enable async workflows to queue requests
  • Switch models: Try a different model if one is throttled
  • Upgrade plan: Consider upgrading for higher quotas
  • Check usage: Monitor your quota in Settings → Usage

Problem: Quota Exhausted

Error: "Monthly quota exceeded"

Solutions:

  • Check your billing status and current quota
  • Wait until the next billing cycle for quota reset
  • Purchase additional quota if available
  • Use more efficient prompts to reduce token usage
  • Enable caching for repeated queries

Best Practices to Avoid Rate Limits

  • Start with 1-2 agents and scale up as needed
  • Use agent throttling settings in preferences
  • Implement retry logic with exponential backoff
  • Cache agent responses when possible
  • Use smaller context windows for simple tasks

5. Agent Spawning & Coordination

Problem: Agents Not Spawning

Symptom: Click "New Agent" but nothing happens

Solutions:

  • Check you haven't hit the maximum agent limit (default: 10)
  • Verify API keys are configured correctly
  • Check system resources (RAM > 4GB available)
  • Restart the Agent Manager: View → Agent Manager → Restart
  • Look for errors in the console: Help → Developer Tools
  • Update to the latest version

Problem: Agents Working on Wrong Tasks

Symptom: Agents complete tasks not assigned to them

Solutions:

  • Use more specific task descriptions
  • Assign agents to specific workspaces
  • Enable workspace isolation in settings
  • Use task dependencies to control execution order
  • Review Agent Manager to verify task assignments

Problem: Agent Coordination Conflicts

Issue: Multiple agents editing the same files causing merge conflicts

Solutions:

  • Enable file locking: Settings → Agents → File Lock Mode
  • Assign different modules/directories to different agents
  • Use sequential mode instead of parallel for related tasks
  • Review artifact system for conflict resolution
  • Set up agent communication channels for coordination

Problem: Agent Stuck or Not Responding

Solutions:

  • Check agent status in Agent Manager
  • Set timeout limits: Settings → Agents → Task Timeout
  • Manually terminate stuck agent: Agent Manager → Select → Terminate
  • Check if agent is waiting for user input
  • Review agent logs for errors or infinite loops

6. Performance & Memory Problems

Problem: High Memory Usage

Symptom: Antigravity using 4GB+ RAM, system slowing down

Solutions:

  • Reduce number of concurrent agents
  • Close unused workspaces
  • Clear artifact cache: Settings → Storage → Clear Cache
  • Disable browser integration if not needed
  • Limit context window size: Settings → Models → Context Limit
  • Restart Antigravity periodically during long sessions

Problem: Slow Response Times

Symptom: Agents take 30+ seconds to respond

Solutions:

  • Check your internet connection speed
  • Switch to a faster model (e.g., Gemini Flash instead of Pro)
  • Reduce context size by being more specific in prompts
  • Enable response caching for repeated queries
  • Use streaming mode for faster perceived response
  • Check server status at status.antigravity.google

Problem: Application Crashes

Solutions:

  • Update to the latest stable version
  • Check crash logs: Help → Show Logs
  • Disable experimental features
  • Increase system RAM if below 8GB
  • Reset to default settings: Settings → Advanced → Reset
  • Reinstall Antigravity if crashes persist

Performance Optimization Tips

  • Hardware: 16GB RAM recommended, SSD preferred
  • Close other apps: Free up RAM for Antigravity
  • Use selective sync: Don't load entire large repositories
  • Disable animations: Settings → Appearance → Reduce Motion
  • Regular cleanup: Clear old artifacts and logs monthly

7. OS Compatibility Issues

Windows-Specific Issues

Common Problems:

  • Path length limit: Enable long paths via Group Policy or Registry
  • Windows Defender: Add Antigravity to exclusion list
  • PowerShell execution: Set execution policy to RemoteSigned
  • WSL integration: Ensure WSL2 is installed for Linux workspace support

macOS-Specific Issues

Common Problems:

  • M1/M2 compatibility: Use ARM version, not Intel
  • Rosetta: Intel version requires Rosetta 2 on Apple Silicon
  • Permissions: Grant Full Disk Access: System Preferences → Security
  • Command line tools: Install Xcode CLI tools first

Linux-Specific Issues

Common Problems:

  • Wayland: May need to force X11 mode for some features
  • AppImage permissions: chmod +x antigravity.AppImage
  • Sandbox issues: Run with --no-sandbox flag if needed
  • Font rendering: Install Microsoft fonts for better UI

8. Network & Connectivity

Problem: Connection Timeout Errors

Solutions:

  • Check internet connection is stable
  • Verify firewall allows outbound HTTPS (port 443)
  • Test connectivity: ping antigravity.google
  • Try different DNS servers (8.8.8.8, 1.1.1.1)
  • Disable VPN temporarily to test
  • Increase timeout: Settings → Network → Request Timeout

Problem: Corporate Firewall Blocking

Error: "Connection refused" or "SSL handshake failed"

Solutions:

  • Request IT to whitelist: *.antigravity.google, *.googleapis.com
  • Configure proxy settings: Settings → Network → Proxy
  • Use enterprise SSO if available
  • Check SSL inspection isn't breaking connections

Problem: Proxy Configuration Issues

Solutions:

  • Auto-detect proxy: Settings → Network → Auto-detect
  • Manual configuration: HTTP_PROXY and HTTPS_PROXY environment variables
  • Test proxy: curl -x proxy:port https://antigravity.google
  • Bypass proxy for local: Add localhost, 127.0.0.1 to no_proxy

9. IDE Integration Issues

Problem: VSCode Integration Not Working

Solutions:

  • Install the official Antigravity VSCode extension
  • Restart VSCode after installing extension
  • Check extension is enabled: Extensions → Antigravity → Enable
  • Verify connection: Command Palette → "Antigravity: Connect"
  • Update both VSCode and Antigravity to latest versions

Problem: Git Integration Conflicts

Solutions:

  • Configure Git: git config --global user.name and user.email
  • Enable auto-commit: Settings → Git → Auto Commit
  • Review agent changes before committing
  • Use branch per agent for parallel development
  • Check SSH keys are configured for private repos

Problem: Terminal Integration Issues

Solutions:

  • Set default shell: Settings → Terminal → Shell Path
  • Configure environment variables in terminal profile
  • Enable terminal in workspace: View → Terminal
  • Check shell initialization files (.bashrc, .zshrc) for errors

10. File Access & Permissions

Problem: Permission Denied Errors

Error: "EACCES: permission denied" when agents try to modify files

Solutions:

  • Check file/folder permissions: ls -la (Linux/Mac) or icacls (Windows)
  • Grant read/write access to workspace directories
  • Run Antigravity with appropriate user privileges
  • Don't run as root/admin unless necessary
  • Check if files are locked by another application

Problem: Unable to Read Project Files

Solutions:

  • Grant workspace access: File → Open Folder → Allow
  • Check .gitignore or .antigravityignore patterns
  • Verify symbolic links point to valid locations
  • Ensure files aren't on network drives with access issues
  • Check encoding: Use UTF-8 for all source files

Problem: Large Files or Repositories

Solutions:

  • Use .antigravityignore to exclude large files (node_modules, build/, etc.)
  • Increase file size limit: Settings → Files → Max File Size
  • Enable selective workspace loading
  • Use shallow git clones for large repos
  • Consider splitting monorepos into multiple workspaces

Still Having Issues?

Official Support Channels

Before Reporting an Issue

  • Update to the latest version
  • Check the status page for known outages
  • Search existing issues on GitHub
  • Collect logs: Help → Show Logs → Export
  • Note your OS version, Antigravity version, and error messages
  • Try reproducing the issue in a clean workspace

Useful Diagnostic Commands

# Check version
antigravity --version

# Run diagnostics
antigravity --doctor

# View logs
antigravity --show-logs

# Reset settings
antigravity --reset-settings

# Test connection
antigravity --test-connection

Quick FAQ

Why is Antigravity using so much RAM?

AI agents require significant memory for model inference, context management, and workspace indexing. Reduce concurrent agents or enable low-memory mode in settings.

Can I use Antigravity offline?

No, Antigravity requires internet connection to access AI models via cloud APIs. Some features like code editing work offline, but agents won't function.

Is there a free tier?

Yes, Google Antigravity offers a free tier with limited monthly quota. Check the official pricing page for current limits and paid plans.

Which model should I use?

Gemini 3 Pro offers the best balance of speed and capability. Use Claude Sonnet 4.5 for complex reasoning, and GPT-OSS for cost-effective simple tasks.

How do I uninstall Antigravity?

Windows: Settings → Apps → Google Antigravity → Uninstall
macOS: Drag Antigravity.app to Trash, then clean ~/Library/Application Support/Antigravity
Linux: sudo apt remove google-antigravity or rm -rf ~/.antigravity

Disclaimer: This troubleshooting guide is maintained by antigravity.im, an independent community resource. We are not affiliated with, endorsed by, or officially connected with Google or the Google Antigravity team. For official support, please visit antigravity.google. Information is provided as-is and may not reflect the latest updates.

Related Resources