Installation
Binary Downloads
Download the latest release for your platform from GitHub releases:
- macOS (Apple Silicon):
dlitescript-darwin-arm64
- macOS (Intel x64):
dlitescript-darwin-x64
- Linux (ARM32):
dlitescript-linux-arm
- Linux (ARM64):
dlitescript-linux-arm64
- Linux (x64):
dlitescript-linux-x64
- Windows (ARM32):
dlitescript-win32-arm
- Windows (ARM64):
dlitescript-win32-arm64
- Windows (x64):
dlitescript-win32-x64
Installation Steps
Download the binary for your platform
Make the file executable (Not needed for Windows):
chmod +x dlitescript-linux-x64
Move the file to your PATH, to call the command from any directory (optional):
For Unix-like systems:
sudo mv dlitescript-linux-x64 /usr/local/bin/dlitescript
For Windows:
Move-Item dlitescript-win32-x64 $env:USERPROFILE\bin\dlitescript
Run DLiteScript:
If not moved to PATH:
./dlitescript script.dl
If moved to PATH:
dlitescript script.dl
Building from Source
Prerequisites
- Go 1.24.6 or later
- Git
Build Steps
Clone the repository:
git clone https://github.com/Dobefu/DLiteScript.git cd DLiteScript
Download dependencies:
go mod download
Build the binary:
go build -buildvcs
Run DLiteScript:
./dlitescript your-script.dl