You have three options to run Algo on Windows:
- PowerShell Script (Recommended) - Automated WSL wrapper for easy use
- Windows Subsystem for Linux (WSL) - Direct Linux environment access
- Git Bash/MSYS2 - Unix-like shell environment (limited compatibility)
The PowerShell script provides the easiest Windows experience by automatically using WSL when needed:
git clone https://github.com/trailofbits/algo
cd algo
.\algo.ps1How it works:
- Detects if you're already in WSL and uses the standard Unix approach
- On native Windows, automatically runs Algo via WSL (since Ansible requires Unix)
- Provides clear guidance if WSL isn't installed
Requirements:
- Windows Subsystem for Linux (WSL) with Ubuntu 22.04
- If WSL isn't installed, the script will guide you through installation
For users who prefer a full Linux environment or need advanced features:
- 64-bit Windows 10/11 (Anniversary update or later)
- Install WSL from PowerShell (as Administrator):
wsl --install -d Ubuntu-22.04- After restart, open Ubuntu and create your user account
cd ~
git clone https://github.com/trailofbits/algo
cd algo
./algoImportant: Don't install Algo in /mnt/c directory due to file permission issues.
You may encounter permission issues if you clone Algo to a Windows drive (like /mnt/c/). Symptoms include:
- Git errors: "fatal: could not set 'core.filemode' to 'false'"
- Ansible errors: "ERROR! Skipping, '/mnt/c/.../ansible.cfg' as it is not safe to use as a configuration file"
- SSH key errors: "WARNING: UNPROTECTED PRIVATE KEY FILE!" or "Permissions 0777 for key are too open"
If you see these errors, configure WSL:
- Edit
/etc/wsl.confto allow metadata:
[automount]
options = "metadata"- Restart WSL completely:
wsl --shutdown- Fix directory permissions for Ansible:
chmod 744 .Why this happens: Windows filesystems mounted in WSL (/mnt/c/) don't support Unix file permissions by default. Git can't set executable bits, and Ansible refuses to load configs from "world-writable" directories for security.
After deployment, copy configs to Windows:
cp -r configs /mnt/c/Users/$USER/If you have Git for Windows installed, you can use the included Git Bash terminal:
git clone https://github.com/trailofbits/algo
cd algo
./algoPros:
- Uses the standard Unix
./algoscript - No WSL setup required
- Familiar Unix-like environment
Cons:
- Limited compatibility: Ansible may not work properly due to Windows/Unix differences
- Not officially supported: May encounter unpredictable issues
- Less robust than WSL or PowerShell options
- Requires Git for Windows installation
Note: This approach is not recommended due to Ansible's Unix requirements. Use WSL-based options instead.