Installation
July 20, 2025Less than 1 minuteguideinstall
Tips
Hulo provides multiple installation methods. Due to the release process not being fully automated yet, package updates on certain platforms may have delays. For the latest version, we recommend downloading directly from GitHub Releases.
Direct Downloads
Download pre-built packages from GitHub Releases, extract them and add the bin/
directory to your system's PATH.
You can also use the following commands for one-click installation:
# Linux/macOS
curl -L https://github.com/hulo-lang/hulo/releases/latest/download/install.sh | bash
# Windows (PowerShell)
irm https://github.com/hulo-lang/hulo/releases/latest/download/install.ps1 | iex
From Source
If you want to build the latest version from source:
# Clone repository
git clone https://github.com/hulo-lang/hulo.git
cd hulo
# for Windows
tools/scripts/setup.ps1
# for linux
tools/scripts/setup.sh
# Build for all platforms
mage release:all
Package Managers
Install Hulo through your favorite package manager:
npm
npm install hulo-lang
pip
pip install hulo
scoop
scoop bucket add hulo https://github.com/hulo-lang/scoop-hulo
scoop install hulo
homebrew
brew tap hulo-lang/hulo
brew install hulo
Package Manager | HomePage | Repository |
---|---|---|
npm | hulo-lang | hulo-npm |
pypi | hulo | hulo-py |
scoop | scoop-hulo | |
brew | homebrew-hulo |
Important
We are actively working to expand Hulo's installation methods. If you'd like to support more platforms or package managers, we welcome your ideas and contributions!