Skip to content

Install

Requirements

  • Python 3.10 or higher
  • ChromeDriver installed and on your system PATH (matches your installed Chrome version)
  • An OpenAI API key (or another supported LLM provider key)

Install the package

bash
pip install lavague

This installs the core framework along with the Selenium driver integration and all required dependencies.


Set required environment variables

LaVague defaults to OpenAI gpt-4o as the action model. Export your key before running any agent:

bash
export OPENAI_API_KEY="sk-..."

To disable telemetry collection (recommended for production or privacy-sensitive use):

bash
export LAVAGUE_TELEMETRY=NONE

Verify the install

bash
python -c "import lavague; print('lavague installed')"

Expected output:

lavague installed

Starter notebook

A Google Colab quick-tour notebook is available with no local setup required:

https://colab.research.google.com/github/lavague-ai/LaVague/blob/main/docs/docs/get-started/quick-tour-notebook/quick-tour.ipynb