This is a lightweight bootstrapper only — it contains no compiler binaries.
When you run techscript install, it:
- Detects your OS and CPU architecture
- Fetches the correct native binary from GitHub Releases
- Installs it into your PATH
- Verifies the installation by running
tsc version
The actual TechScript compiler remains distributed via GitHub Releases.
This PyPI package is under 200 KB and contains only Python code.
| Platform | Architecture | Status |
|---|---|---|
| Windows | x64 | ✅ Supported |
| Windows | ARM64 | ✅ Supported |
| Linux | x64 | ✅ Supported |
| Linux | ARM64 | ✅ Supported |
| macOS | Intel (x64) | ✅ Supported |
| macOS | Apple Silicon (ARM64) | ✅ Supported |
| Android Termux | ARM64 | ✅ Supported |
| Android Termux | ARMv7 | 🔄 Optional |
pip install techscript
techscript installcurl -fsSL https://raw.githubusercontent.com/Tcode-Motion/techscript/main/scripts/install.sh | bashDownload TechScript_Setup.exe from GitHub Releases.
pkg update
pkg install curl python
# Option 1: Python installer
pip install techscript
techscript install
# Option 2: Shell installer
curl -fsSL https://raw.githubusercontent.com/Tcode-Motion/techscript/main/scripts/install.sh | bashbrew install tcode-motion/tap/techscriptwinget install Tcode-Motion.TechScriptscoop install techscripttechscript installtechscript install --forcetechscript versiontechscript checktechscript uninstall# These are equivalent:
techscript run myfile.txs
tsc run myfile.txsAfter installing:
# Create a new project
tsc new hello_world
cd hello_world
# Run it
tsc runYour first src/main.txs:
say "Hello, World! 🌍"
name = ask "What is your name? "
say $"Welcome, {name}! You are running TechScript 2.0."
| Platform | Location |
|---|---|
| Windows | %LOCALAPPDATA%\TechScript\bin\tsc.exe |
| Linux / macOS | ~/.local/bin/tsc |
| Termux | $PREFIX/bin/tsc |
Enable verbose output and Python tracebacks:
techscript install --debug- Python 3.8 or newer
- Internet access (to download the compiler binary)
- The
requestslibrary (installed automatically)
git clone https://github.com/Tcode-Motion/techscript
cd techscript/python-installer
# Install in editable mode
pip install -e .
# Run tests
python -m pytest tests/ -v
# Build wheel and sdist
python -m build| Resource | Link |
|---|---|
| 🌐 Website | techscript.is-a.dev |
| 📦 GitHub | Tcode-Motion/techscript |
| 🐍 PyPI | pypi.org/project/techscript |
| 💻 VS Code Extension | marketplace.visualstudio.com |
| 🐛 Issues | GitHub Issues |
| 💬 Discussions | GitHub Discussions |
MIT License — Copyright © 2026 Tcode-Motion