Quick Install (Recommended)
The easiest way to install Terramind on macOS or Linux:- Detect your operating system and architecture
- Download the correct binary
- Install it to the appropriate location
- Make it available in your PATH
Package Managers
Alternatively, install via your preferred package manager:Platform-Specific Installation
macOS
Homebrew
Install Script
Linux
Install Script (Recommended)
Manual Download
Windows
Chocolatey
Scoop
npm
Verify Installation
After installation, verify that Terramind is working:Updating Terramind
Using Install Script
Using Package Managers
Using Built-in Upgrade Command
System Requirements
- Operating System: macOS, Linux, or Windows
- Architecture: ARM64 or x64
- Node.js: 18.x or higher (only for npm installation)
Troubleshooting
Command not found
Command not found
If you get a “command not found” error after installation:
- Make sure the installation completed successfully
- Try closing and reopening your terminal
- Check that the binary is in your PATH
- Run the install script again:
curl -fsSL https://terramind.com/install | bash
Permission denied
Permission denied
If you encounter permission errors:
- The install script handles permissions automatically
- For npm installations, try using
sudofor global installations - Or install without
-gflag in a local project - Consider using a Node version manager (nvm, fnm) to avoid permission issues
Version mismatch
Version mismatch
If the version command shows an old version:
- Clear package cache:
npm cache clean --force - Uninstall:
npm uninstall -g terramind - Reinstall using the install script:
curl -fsSL https://terramind.com/install | bash
