Homebrew
On macOS and Linux, you can install tdsl via Homebrew.
brew tap keroway/tapbrew install tdsltdsl --helpTo update, use the standard Homebrew commands.
brew updatebrew upgrade tdslOne-Line Install
Section titled “One-Line Install”If you prefer not to use Homebrew, you can use the install script to download a pre-built binary.
curl -sSfL https://raw.githubusercontent.com/keroway/timeline-dsl/main/install.sh | shThe default install location is ~/.local/bin/tdsl. If ~/.local/bin is not in your PATH, add it to your shell's configuration file.
export PATH="${HOME}/.local/bin:${PATH}"One-Line Install (Windows)
Section titled “One-Line Install (Windows)”In PowerShell, you can use the install script to download a pre-built binary.
irm https://raw.githubusercontent.com/keroway/timeline-dsl/main/install.ps1 | iexFor a manual install, open GitHub Releases, download tdsl-windows-x86_64.zip from Assets, extract tdsl.exe, and place it in a folder on your PATH.
Install via cargo-binstall
Section titled “Install via cargo-binstall”If you have cargo-binstall, you can install the pre-built binary quickly.
cargo binstall tdsl-cliInstall via cargo
Section titled “Install via cargo”If you have a Rust toolchain installed, you can install tdsl-cli directly from the GitHub repository.
cargo install --git https://github.com/keroway/timeline-dsl tdsl-cli