Installation
Stardust can be installed on macOS, Linux, and Windows. Choose your preferred installation method below.
macOS
The recommended way to install Stardust on macOS:
brew tap nexlabstudio/tap
brew install stardust
To upgrade to the latest version:
brew upgrade stardust
Install using our installer script:
curl -sSL https://raw.githubusercontent.com/nexlabstudio/stardust/dev/install.sh | bash
This installs to /usr/local/bin by default. To customize:
STARDUST_INSTALL_DIR=~/.local/bin curl -sSL https://raw.githubusercontent.com/nexlabstudio/stardust/dev/install.sh | bash
Linux
The recommended way to install Stardust on Linux:
curl -sSL https://raw.githubusercontent.com/nexlabstudio/stardust/dev/install.sh | bash
The script automatically detects your architecture (x64 or ARM64).
Install from the Snap Store:
snap install stardust
Windows
The recommended way to install Stardust on Windows:
scoop install https://raw.githubusercontent.com/nexlabstudio/stardust/dev/scoop/stardust.json
Install using Chocolatey:
choco install stardust
Dart/Flutter Developers
If you already have the Dart SDK installed, you can install Stardust as a global package:
dart pub global activate stardust
📝 Note
Make sure ~/.pub-cache/bin is in your PATH.
Manual Download
Download pre-built binaries from the GitHub Releases page.
| Platform | Architecture | Download |
|---|---|---|
| macOS | Apple Silicon (ARM64) | stardust-darwin-arm64.tar.gz |
| macOS | Intel (x64) | stardust-darwin-x64.tar.gz |
| Linux | x64 | stardust-linux-x64.tar.gz |
| Linux | ARM64 | stardust-linux-arm64.tar.gz |
| Windows | x64 | stardust-windows-x64.zip |
Manual Installation Steps
Download the archive
Download the appropriate archive for your platform from the releases page.
Extract the binary
# macOS/Linux
tar -xzf stardust-*.tar.gz
# Windows (PowerShell)
Expand-Archive stardust-*.zip
Move to PATH
Move the stardust binary to a directory in your PATH:
# macOS/Linux
sudo mv stardust /usr/local/bin/
# Windows - move to a directory in your PATH
Verify Installation
After installation, verify that Stardust is working:
stardust --version
You should see output like:
Stardust v0.1.0
Next Steps
Quick Start
Now that Stardust is installed, create your first documentation site.