TechScript is designed to install cleanly on multiple platforms with zero external dependencies.
- Go to the Releases page on GitHub.
- Download
TechScript_v2.0.0_x64.exe(or the latest setup file). - Double-click to execute the installer. The wizard will automatically:
- Install the native Rust compiler and VM binaries.
- Add the
techcommand-line executable to your system environmentPATHvariables. - Associate
.txssource files with the console runner host. - Offer to configure the VS Code Syntax Highlighter extension.
pip install techscript-langUse the official one-line installation shell script:
curl -fsSL https://raw.githubusercontent.com/Tcode-Motion/techscript/main/scripts/install.sh | bashAlternatively, build from source using Cargo:
git clone https://github.com/Tcode-Motion/techscript.git
cd techscript
cargo build --release
sudo cp target/release/tech /usr/local/bin/Download and install using Homebrew:
brew tap tcode-motion/techscript
brew install techscriptOr run the standard installer script:
curl -fsSL https://raw.githubusercontent.com/Tcode-Motion/techscript/main/scripts/install.sh | bashVerify that the tech executable is correctly configured in your PATH by running:
tech versionThis should output the current active release version (e.g. TechScript v2.0.0).