Skip to content

Quick Start: Install Thagore

Quick Start: Install Thagore

Use the official installer flow by platform.

Step 1: Install

Terminal window
Invoke-WebRequest -Uri "https://github.com/thagore-foundation/thagore/releases/latest/download/thagore-setup-windows-x86_64.exe" -OutFile thagore-setup.exe
Start-Process -FilePath .\thagore-setup.exe -Wait

For ARM64 Windows, use: https://github.com/thagore-foundation/thagore/releases/latest/download/thagore-setup-windows-arm64.exe

Verify:

Terminal window
thagore --version

Step 2: Write Your First Program

Create hello.tg:

hello.tg
func main() -> i32:
print("Hello, Thagore!")
return 0

Compile and run:

Terminal window
thagore build hello.tg -o hello
./hello
  • Windows x86-64 installer: https://github.com/thagore-foundation/thagore/releases/latest/download/thagore-setup-windows-x86_64.exe
  • Windows ARM64 installer: https://github.com/thagore-foundation/thagore/releases/latest/download/thagore-setup-windows-arm64.exe
  • Linux/macOS/portable installer script: https://raw.githubusercontent.com/thagore-foundation/thagore/refs/heads/main/scripts/install/install.sh
  • All releases: https://github.com/thagore-foundation/thagore/releases