MacOS Installation
Pre-compiled Binaries
Download the latest precompiled package from GitHub Releases
The file will be namedjule-darwin-amd64.zip
for x86_64 systems andjule-darwin-arm64.zip
for ARM64 systems.Extract the ZIP archive with
unzip
:
bash
unzip jule-darwin-arm64.zip
- The
julec
binary will be located in thejule/bin
directory
You can run it using./jule/bin/julec
.
INFO
You can add the jule/bin
directory to your system's $PATH
variable to run julec
from anywhere.
For example, add the following line to your shell's configuration file (e.g. ~/.bashrc
):
bash
export PATH="$PATH:/path/to/jule/bin"