llamastash

(β˜… 151)

Zero-overhead, terminal-native local-LLM runtime manager. Launches, supervises, and routes local models behind one OpenAI-compatible endpoint.

  • .gitignore
  • AGENTS.md
  • Cargo.lock
  • Cargo.toml
  • CHANGELOG.md
  • CLAUDE.md
  • config.example.yaml
  • CONTRIBUTING.md
  • FEATURES.md
  • INSTALL.md
  • LICENSE
  • Makefile
  • NOTICE
  • README.md
  • rustfmt.toml
  • SECURITY.md
  • TODO.md

# Installation Guide

1. Get the code
git clone https://github.com/llamastash/llamastash

Downloads the entire project code from GitHub to your computer.

cd llamastash

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
curl -fsSL https://llamastash.dev/install.sh | sh

Downloads and runs the official install script in one line β€” this handles the full setup automatically.

irm https://llamastash.dev/install.ps1 | iex

Downloads and runs the official install script via PowerShell β€” this handles the full setup automatically.

brew install llamastash/llamastash/llamastash

Installs the pre-built package via Homebrew β€” no source build required.

cargo install llamastash

Builds and installs the package published on crates.io β€” no need to clone the repo yourself.

βœ… After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Python

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
pip install -r scripts/requirements.txt

Installs the Python libraries listed in requirements.txt (or similar).

python <μ‹€ν–‰ν•  파일λͺ…>.py # READMEμ—μ„œ μ •ν™•ν•œ μ‹€ν–‰ 파일λͺ…을 ν™•μΈν•˜μ„Έμš”

Runs the Python script (or module).

βœ… If it runs without errors and prints output in the terminal, it worked.

4. Rust

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Rust (rustup) Installing via rustup also installs cargo.
cargo install llamastash

Builds and installs the package published on crates.io β€” no need to clone the repo yourself.

βœ… If cargo build finishes without errors, it worked. The executable is created under target/.

Pulled directly from this repo's README.

5. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make

Compiles the code based on the generated build configuration to produce an executable.

βœ… If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation