Release & Installers
Release & Installers
Release artifacts
Each Thagore release publishes these installer entry points:
| Artifact | Purpose |
|---|---|
thagup.sh | Manifest-based installer for POSIX targets |
thagup.ps1 | Manifest-based installer for Windows PowerShell |
release-manifest-v<version>.json | Artifact matrix and checksums consumed by thagup |
SHA256SUMS-v<version>.txt | Human-readable checksum summary |
Platform archives follow this layout:
| Artifact | Platform |
|---|---|
thagore-<version>-x86_64-unknown-linux-gnu.tar.gz | Linux x86-64 |
thagore-<version>-aarch64-unknown-linux-gnu.tar.gz | Linux ARM64 |
thagore-<version>-x86_64-apple-darwin.tar.gz | macOS x86-64 |
thagore-<version>-aarch64-apple-darwin.tar.gz | macOS ARM64 |
thagore-<version>-x86_64-pc-windows-msvc.zip | Windows x86-64 |
thagore-<version>-aarch64-pc-windows-msvc.zip | Windows ARM64 |
Recommended install flow
Linux/macOS:
curl -fsSL https://github.com/thagore-foundation/thagore/releases/latest/download/thagup.sh | shWindows:
irm https://github.com/thagore-foundation/thagore/releases/latest/download/thagup.ps1 | iexVerify:
thagc --versiondrago --versionManual installation example
curl -fsSL https://github.com/thagore-foundation/thagore/releases/download/v0.9.6/thagore-0.9.6-x86_64-unknown-linux-gnu.tar.gz -o thagore.tar.gzcurl -fsSL https://github.com/thagore-foundation/thagore/releases/download/v0.9.6/SHA256SUMS-v0.9.6.txt -o SHA256SUMS-v0.9.6.txtsha256sum --check --ignore-missing SHA256SUMS-v0.9.6.txtmkdir -p ~/.local/share/thagore/toolchains/indevtar -xzf thagore.tar.gz -C ~/.local/share/thagore/toolchains/indevInstaller URLs
| Endpoint | Description |
|---|---|
https://github.com/thagore-foundation/thagore/releases/latest/download/thagup.sh | Latest POSIX installer asset |
https://github.com/thagore-foundation/thagore/releases/latest/download/thagup.ps1 | Latest Windows installer asset |
https://github.com/thagore-foundation/thagore/releases/download/<tag>/thagup-v<tag>.sh | Explicit POSIX installer for a chosen release tag |
https://github.com/thagore-foundation/thagore/releases/download/<tag>/thagup-v<tag>.ps1 | Explicit Windows installer for a chosen release tag |
https://raw.githubusercontent.com/thagore-foundation/thagore/main/tooling/release/thagup.sh | Raw source on main |
Release channels
indev is the public release track name. It means the toolchain is still in development and may change.