Linux Installation
JuleC is available on Linux through various package managers.
If you don't see your distribution listed below, check the pre-compiled binaries section.
See manual page about packages.
Arch Linux
There are two different official AUR packages available:
You can install them using an AUR helper (e.g. paru):
paru -S julecNix
JuleC is available in Nixpkgs. The package can be installed with:
nix-env
On NixOs:
nix-env -iA nixos.julecOn Non NixOs:
# without flakes:
nix-env -iA nixpkgs.julec
# with flakes:
nix profile install nixpkgs#julecNixOS Configuration
environment.systemPackages = [
pkgs.julec
];nix-shell
nix-shell -p julecPre-compiled Binaries
Download the latest precompiled package from GitHub Releases
The file will be namedjule-linux-amd64.zipfor x86_64 systems andjule-linux-arm64.zipfor ARM64 systems.Extract the ZIP archive with
unzip:
unzip jule-linux-amd64.zip- The
julecbinary will be located in thejule/bindirectory
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):
export PATH="$PATH:/path/to/jule/bin"