Skip to content

Install

GoLogin offers two integration paths: a desktop app for manual browser sessions and an SDK for programmatic automation.


1. Desktop App (Manual Use)

Download the platform-specific installer from https://gologin.com/:

  • Windows: .exe installer
  • macOS (Intel): .dmg
  • macOS (Apple Silicon / M-series): .dmg (separate build)
  • Linux: .AppImage or .deb
  • Android: Google Play Store

No command-line install step is required for the desktop app. Sign in with your GoLogin account after installation.


2. Node.js SDK

Requires Node.js 16+ and a GoLogin API token (obtained from Settings > API in the dashboard at https://app.gologin.com/personalArea/TokenApi).

bash
npm i gologin

3. Python SDK

Requires Python 3.8+ and a virtual environment.

bash
python3 -m venv venv
source venv/bin/activate
pip install gologin selenium webdriver-manager

On Windows, activate the venv with:

powershell
.\venv\Scripts\Activate.ps1
pip install gologin selenium webdriver-manager

API Token

All SDK calls require a GoLogin API token. Set it as an environment variable:

bash
export GL_API_TOKEN=your_token_here

Or pass it directly in code (development only; prefer env vars in production).