# Installer just avec Homebrew, apk, chocolatey, apt, dnf, MacPorts, Nix, pacman, zypper, scoop, winget

Consultez les chemins d'installation, exécutables, métadonnées et notes de sécurité de just pour les workflows d'agents IA.

## installation

```sh
sudo av install brew:just
```

Commandes d'installation supplémentaires:

### macOS

- Homebrew (100%):

```sh
brew install just
```

  Preuve: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install just
```

  Preuve: MacPorts ports tree: sysutils/just/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add just
```

  Preuve: Alpine Linux edge package indexes: just from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install just
```

  Preuve: Debian stable package indexes: just from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install just
```

  Preuve: Fedora Rawhide package metadata: just from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#just
```

  Preuve: nixpkgs package indexes: pkgs/by-name/ju/just/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S just
```

  Preuve: Arch Linux sync databases: just from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install just
```

  Preuve: openSUSE Tumbleweed package metadata: just from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

### Windows

- Chocolatey (92%):

```sh
choco install just
```

  Preuve: Chocolatey community package catalog: just from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','java7u13x86'

- Scoop (92%):

```sh
scoop install main/just
```

  Preuve: Scoop official bucket manifest trees: bucket/just.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1

- winget (92%):

```sh
winget install --id Casey.Just -e
```

  Preuve: Windows Package Manager source index: Casey.Just from https://cdn.winget.microsoft.com/cache/source.msix

## Faits du paquet

- **Clé du paquet:** brew:just
- **Gestionnaire de paquets:** Homebrew
- **Version:** 1.57.0
- **Résumé source:** Handy way to save and run project-specific commands
- **Page d'accueil:** <https://just.systems>
- **Dépôt:** <https://github.com/casey/just>
- **Dernière mise à jour:** 2026-07-19T04:49:07Z
- **Généré:** 2026-08-03T19:37:03+00:00

## exécutables

- just (alias)

## Comportement d'installation

- Bouteille: non disponible

## Version et fraîcheur

- page générée: 2026-08-03
- version du gestionnaire: 1.57.0
## Historique du projet et usages

just is a cross-platform command runner for saving project-specific commands in a `justfile`. It borrows the familiar recipe shape of Makefiles but deliberately avoids being a timestamp-based build system.

### Historique du projet

Casey Rodarmor created the `just` repository on 2016-06-17. The project grew from a practical frustration with using `make` for non-build automation: developers wanted named commands, arguments, helpful errors, directory search, completions, and readable syntax without Make's build-system semantics.

The official manual frames `just` as a command runner, not a build system. Recipes live in a file named `justfile`, `Justfile`, `.justfile`, or one of the documented fallback locations, and users invoke them as `just RECIPE`.

Version 1.0.0 was published on GitHub on 2022-02-22. By 2026-07-01, the repository metadata showed more than 34,000 GitHub stars and regular release activity, indicating that `just` had moved well beyond a niche Rust utility.

### Historique d'adoption

The official README documents installation through package managers, prebuilt binaries, and Cargo. The input package metadata shows broad packaging across Alpine, Homebrew, Chocolatey, Debian, Fedora, MacPorts, Nix, Arch, Scoop, Ubuntu, winget, and openSUSE-family packages.

Adoption has been helped by `just` being a single Rust-built CLI with no runtime dependency on a language-specific project stack. It fits repositories that want a shared entry point for testing, linting, formatting, release tasks, Docker commands, or local development setup.

### Modes d'utilisation

A repository usually stores recipes in `justfile`; running `just` lists available recipes, and running `just name args...` executes one recipe. The manual documents shell selection, dotenv loading, parameters, aliases, imports, modules, completions, and recipes written in arbitrary languages.

The key usage boundary is that `just` does not replace Make for dependency-aware incremental builds. It replaces the common pattern of using Makefiles or ad hoc scripts as a menu of project commands.

### Pourquoi les passionnés de paquets s'y intéressent

just is significant because it became the package-manager-friendly version of a tiny team convention. A single binary plus a plain text `justfile` gives projects a predictable command surface without requiring contributors to learn an entire build system.

For package nerds, it is also interesting as a Rust CLI that is packaged almost everywhere and competes with decades of Make muscle memory by being intentionally less powerful in the build-system sense.

### Chronologie

- 2016-06-17: The just GitHub repository is created.
- 2022-02-22: just 1.0.0 is published on GitHub.
- 2022-02-28: just 1.0.1 is published on GitHub with prebuilt release artifacts.
- 2026-06-30: just 1.55.1 is published on GitHub.

### Related projects

- GNU Make is the historical comparison point and the tool whose command-runner misuse just often replaces.
- Taskfile and npm scripts are adjacent ways to publish project commands.
- just-lsp provides Language Server Protocol support for editing justfiles.
- Cargo is the Rust package manager used to install just from source or crates.io.

### Sources

- <https://api.github.com/repos/casey/just>
- <https://api.github.com/repos/casey/just/releases>
- <https://github.com/casey/just>
- <https://github.com/casey/just/releases/tag/1.0.0>
- <https://just.systems/man/en/>
- <https://raw.githubusercontent.com/casey/just/master/README.md>


## Notes de sécurité

Aucun manifest local de gestion des secrets correspondant n'a été trouvé pour just. Les métadonnées de paquet Nucleus restent publiées ici afin que la couverture future dispose d'une URL stable.



## Configuration and credential file locations

These source-backed paths show where this package keeps local settings or durable credentials. Automic Vault can use them as review targets for secret scanning, migration, and command approval.


## Configuration files

- Unix: justfile, Justfile, .justfile, $XDG_CONFIG_HOME/just/justfile, ~/.config/just/justfile, ~/justfile, ~/.justfile
## Autres enregistrements de gestionnaires de paquets

- Debian apt - just - 1.40.0-1+b1: normalized package name match | Debian stable package indexes: just from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Save and run project-specific commands | https://github.com/casey/just
- Nix - just: normalized package name match | nixpkgs package indexes: pkgs/by-name/ju/just/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Ubuntu apt - just - 1.21.0-1: normalized package name match | Ubuntu 24.04 LTS package indexes: just from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz | Save and run project-specific commands | https://github.com/casey/just
- apk - just - 1.57.0-r0: normalized package name match | Alpine Linux edge package indexes: just from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Just a command runner | https://github.com/casey/just
- apk - just-bash-completion - 1.57.0-r0: normalized package name match | Alpine Linux edge package indexes: just-bash-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bash completions for just | https://github.com/casey/just
- apk - just-doc - 1.57.0-r0: normalized package name match | Alpine Linux edge package indexes: just-doc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Just a command runner (documentation) | https://github.com/casey/just
- apk - just-fish-completion - 1.57.0-r0: normalized package name match | Alpine Linux edge package indexes: just-fish-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Fish completions for just | https://github.com/casey/just
- apk - just-zsh-completion - 1.57.0-r0: normalized package name match | Alpine Linux edge package indexes: just-zsh-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Zsh completions for just | https://github.com/casey/just
- dnf - just - 1.57.0-1.fc45: normalized package name match | Fedora Rawhide package metadata: just from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Just a command runner | https://crates.io/crates/just
- pacman - just - 1.57.0-1: normalized package name match | Arch Linux sync databases: just from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | A handy way to save and run project-specific commands | https://github.com/casey/just
- zypper - just - 1.57.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: just from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Commmand runner | https://github.com/casey/just
- zypper - just-bash-completion - 1.57.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: just-bash-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Bash Completion for just | https://github.com/casey/just
- zypper - just-fish-completion - 1.57.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: just-fish-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Fish Completion for just | https://github.com/casey/just
- zypper - just-zsh-completion - 1.57.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: just-zsh-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Zsh Completion for just | https://github.com/casey/just
- MacPorts - just: normalized package name match | MacPorts ports tree: sysutils/just/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
- Chocolatey - just: normalized package name match | Chocolatey community package catalog: just from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','java7u13x86'


## Liens liés

- [just](https://pkg.so/fr/pkg/cargo/just/) - Same normalized package name exists in another local package ecosystem.

## Combined YAML source

View the package source record on GitHub. [combined/just.yml](https://github.com/mxcl/pkgdb/blob/main/combined/just.yml)


## Sources

- pkg.so package database
- Geiger risk classifier
- curated configuration and credential file locations
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
