Skip to content

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):

bash
paru -S julec

Nix

JuleC is available in Nixpkgs. The package can be installed with:

nix-env

On NixOs:

bash
nix-env -iA nixos.julec

On Non NixOs:

bash
# without flakes:
nix-env -iA nixpkgs.julec
# with flakes:
nix profile install nixpkgs#julec
NixOS Configuration
nix
environment.systemPackages = [
  pkgs.julec
];
nix-shell
bash
nix-shell -p julec

Pre-compiled Binaries

  1. Download the latest precompiled package from GitHub Releases
    The file will be named jule-linux-amd64.zip for x86_64 systems and jule-linux-arm64.zip for ARM64 systems.

  2. Extract the ZIP archive with unzip:

bash
unzip jule-linux-amd64.zip
  1. The julec binary will be located in the jule/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"