- Python 3.10+
- Terraform 1.x (v1.0.0 or higher) — not required when using
--planfilemode - Git
- Graphviz
- Ollama (Optional — only for local AI refinement)
- wslu (Optional — required only on WSL if you use
--showto auto-open diagrams)
Note: If you use the
--planfileand--graphfileoptions to provide pre-generated Terraform outputs, Terraform itself does not need to be installed. Only Python, Graphviz, and Git are required. See the Usage Guide for details.
macOS:
brew install graphvizUbuntu/Debian:
sudo apt update
sudo apt install graphviz
sudo apt install libgvplugin-neato-layout8Windows: Download from https://graphviz.org/download/
Verify installation:
dot -VMost systems have Git pre-installed. Verify:
git --versionIf not installed, download from https://git-scm.com/downloads
macOS:
brew tap hashicorp/tap
brew install hashicorp/terraformUbuntu/Debian:
wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update && sudo apt install terraformWindows: Download from https://developer.hashicorp.com/terraform/downloads
Verify installation:
terraform version
# Must show v1.0.0 or higherIf you run TerraVision under WSL and intend to use the --show flag to auto-open generated diagrams, install wslu:
sudo apt install wsluWhy: WSL ships without a real Linux desktop, so the standard xdg-open lookup chain has no application database to consult and fails silently. The wslu package provides wslview, which calls back into Windows and uses your host file associations (PNG → Photos, SVG → browser, etc.). TerraVision automatically detects WSL at runtime and routes opens through wslview; without it the diagram still gets generated correctly, you just have to open the file yourself.
If wslu isn't installed, TerraVision prints a one-line sudo apt install wslu hint when --show is used. You can also skip --show entirely and open the output file from Windows Explorer or your editor.
TerraVision is published to PyPI, so a single command installs the CLI and wires it up on your PATH on macOS, Linux, and Windows.
pipx installs the CLI into its own isolated virtualenv so it can't clash with other Python tooling on your system.
# Install pipx first if you don't have it
# macOS: brew install pipx && pipx ensurepath
# Ubuntu/Debian: sudo apt install pipx && pipx ensurepath
# Windows: python -m pip install --user pipx && python -m pipx ensurepath
pipx install terravision
terravision --versionpip install terravision
terravision --version!!! tip "Upgrading"
pipx upgrade terravision or pip install --upgrade terravision pulls the latest release from PyPI.
If you don't want to install Python, Graphviz, and Terraform locally, you can run everything inside the official Docker image. This is also the recommended method for containerized CI/CD systems.
docker pull patrickchugh/terravision:latestOr build it yourself:
git clone https://github.com/patrickchugh/terravision.git && cd terravision
docker build -t patrickchugh/terravision .Mount your project into the container so it can see your .tf files and write output back:
# Local directory
docker run --rm -it -v "$(pwd):/project" patrickchugh/terravision \
draw --source /project/yourfiles/ --varfile /project/your.tfvars
# Remote Git repository with subfolder
docker run --rm -it -v "$(pwd):/project" patrickchugh/terravision \
draw --source https://github.com/your-repo/terraform-examples.git//mysubfolder/If Terraform needs credentials to run terraform plan, pass them into the container. For AWS:
# Mount your AWS credentials folder
docker run --rm -it -v "$(pwd):/project" \
-v ~/.aws:/home/terravision/.aws:ro \
patrickchugh/terravision draw --source /project/yourfiles/
# Or pass credentials as environment variables
docker run --rm -it -v "$(pwd):/project" \
-e AWS_ACCESS_KEY_ID=your-access-key \
-e AWS_SECRET_ACCESS_KEY=your-secret-key \
patrickchugh/terravision draw --source /project/yourfiles/!!! tip "Skip credentials entirely"
Use --planfile and --graphfile with pre-generated Terraform plan output to bypass terraform plan altogether. See Pre-Generated Plan Input.
The image includes tfenv, so you can install and select a specific Terraform version at runtime via TFENV_TERRAFORM_VERSION:
docker run --rm -it -v "$(pwd):/project" \
-e TFENV_TERRAFORM_VERSION=1.9.8 \
patrickchugh/terravision draw --source /project/yourfiles/If TFENV_TERRAFORM_VERSION is omitted, the container runs terravision directly with the image's default Terraform.
If you have Nix installed with flakes enabled, you can get a fully reproducible development shell with TerraVision and every dependency pinned.
git clone https://github.com/patrickchugh/terravision.git && cd terravision
nix developThis gives you terravision, graphviz, terraform, and git in your PATH with no system-level install needed.
nix run github:patrickchugh/terravision -- draw --source /path/to/terraform --showUse this method if you plan to hack on TerraVision itself. It's the workflow used by CI and every maintainer.
macOS/Linux:
curl -sSL https://install.python-poetry.org | python3 -Windows:
(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -# Clone repository
git clone https://github.com/patrickchugh/terravision.git
cd terravision
# Install dependencies in an isolated virtual environment
poetry install
# Activate the venv (drop the `poetry run` prefix for subsequent commands)
eval $(poetry env activate)
terravision --version
# Or use `poetry run` for individual commands without activating
poetry run terravision --versionSee the Contributing Guide for coding standards, tests, and the PR process.
Run a test to ensure everything is working:
# Check TerraVision version
terravision --version
# Check help
terravision --help
# Verify all dependencies
terraform version
git --version
dot -V
python --versionIf you want to use local AI-powered diagram refinement:
macOS:
brew install ollamaLinux:
curl -fsSL https://ollama.com/install.sh | shWindows: Download from https://ollama.com/download
# Start Ollama server (runs automatically on macOS/Linux after install)
ollama serve
# Pull the default model (llama3)
ollama pull llama3
# Optional: Keep model loaded longer (default is 5 minutes)
export OLLAMA_KEEP_ALIVE=1h
# Verify Ollama is running
curl http://localhost:11434/api/tagsUsing a different model: Edit OLLAMA_MODEL in modules/config/cloud_config_<provider>.py (default llama3) to any tag you've pulled — llama3.1, mistral, qwen2.5, etc. Make sure the corresponding ollama pull <model> has been run first, otherwise the first chat call will return 404 and TerraVision falls back to non-AI rendering.
# Check Python version
python --version
# If Python 3.10+ not available, install it
# macOS
brew install python@3.10
# Ubuntu
sudo apt-get install python3.10If pip install terravision fails with permission errors, use pipx (recommended) or fall back to a user install / virtualenv:
# Preferred: isolated install via pipx (no sudo ever needed)
pipx install terravision
# Or user install
pip install --user terravision
# Or inside a virtualenv
python -m venv venv
source venv/bin/activate
pip install terravisionIf terravision command is not found:
# Add to PATH temporarily
export PATH=$PATH:/path/to/terravision
# Add to PATH permanently (add to ~/.bashrc or ~/.zshrc)
echo 'export PATH=$PATH:/path/to/terravision' >> ~/.bashrc
source ~/.bashrcIf you get "dot command not found" error:
# Verify Graphviz installation
which dot
# If not found, reinstall Graphviz
# macOS
brew reinstall graphviz
# Ubuntu
sudo apt-get install --reinstall graphviz- Usage Guide - Learn how to use TerraVision
- Quick Start Examples - Try your first diagram
- Troubleshooting - Common issues and solutions