# Installer jfrog-cli avec Homebrew, apk, chocolatey, dnf, Nix, winget, zypper, scoop

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

## installation

```sh
sudo av install brew:jfrog-cli
```

## Réponse sur la sécurité des agents

jfrog-cli manages Artifactory, packages, builds, and release artifacts.

- **Accès aux identifiants:** Reads JFrog tokens, server config, and repository credentials.
- **Modification distante:** Can upload, delete, promote, and configure artifacts or repositories.
- **Risque de publication ou d'artéfact:** Can publish build artifacts and release bundles.
- **Contrôle recommandé:** Gate upload, delete, promote, config, and token commands.
- **Conseils d'utilisation par les agents:** Allow searches; require approval for artifact writes, deletes, and promotion.

Commandes d'installation supplémentaires:

### macOS

- Homebrew (100%):

```sh
brew install jfrog-cli
```

  Preuve: local Homebrew formula metadata

### Linux

- apk (92%):

```sh
sudo apk add jfrog-cli
```

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

- dnf (92%):

```sh
sudo dnf install jfrog-cli
```

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

- Nix (92%):

```sh
nix profile install nixpkgs#jfrog-cli
```

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

- zypper (92%):

```sh
sudo zypper install jfrog-cli
```

  Preuve: openSUSE Tumbleweed package metadata: jfrog-cli from https://download.opensuse.org/tumbleweed/repo/oss/repodata/be8d3611d25469107f32075a1697e69ec57a2b850b42348a658cc671ad5ec2b50760d02c3e59524d50da9a11d5be799bdaffba2e166e8ca8858512e3c0bd665d-primary.xml.zst

### Windows

- Chocolatey (92%):

```sh
choco install jfrog-cli
```

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

- winget (92%):

```sh
winget install --id JFrog.Cli -e
```

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

- Scoop (92%):

```sh
scoop install main/jfrog
```

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

## Faits du paquet

- **Clé du paquet:** brew:jfrog-cli
- **Gestionnaire de paquets:** Homebrew
- **Page du gestionnaire de paquets:** <https://formulae.brew.sh/formula/jfrog-cli>
- **Version:** 2.113.0
- **Résumé source:** Command-line interface for JFrog products
- **Page d'accueil:** <https://docs.jfrog.com/integrations/docs/jfrog-cli>
- **Dépôt:** <https://github.com/jfrog/jfrog-cli>
- **Docs amont:** <https://docs.jfrog.com/integrations/docs/jfrog-cli>
- **Licence:** Apache-2.0
- **Archive source:** <https://github.com/jfrog/jfrog-cli/archive/refs/tags/v2.113.0.tar.gz>
- **Dernière mise à jour:** 2026-07-08T16:32:03Z
- **Généré:** 2026-07-08T18:08:21+00:00

## exécutables

- jf (cli)
- jfrog (cli)
- jf (alias)
- jfrog (alias)

## Dépendances de compilation

- go

## Comportement d'installation

- hook post-installation: non défini
- Bouteille: disponible sur arm64_linux, arm64_sequoia, arm64_sonoma, arm64_tahoe, sonoma, x86_64_linux

## Version et fraîcheur

- page générée: 2026-07-08
- version du gestionnaire: 2.113.0
- gestionnaire mis à jour: 2026-07-08
- données locales: OK
- dépôt amont: https://github.com/jfrog/jfrog-cli
- dernière version détectée: v2.113.0 (à jour)
## Historique du projet et usages

JFrog CLI is the command-line client for automating JFrog platform workflows. Its role is to turn Artifactory, Xray, Distribution, Access, build-info, and package-manager operations into scriptable commands for CI systems and release pipelines.

### Historique du projet

The public jfrog/jfrog-cli repository was created in 2015, and the first GitHub release series appeared in 2016. The README describes the tool as a compact client for automating JFrog product access through REST APIs, with early emphasis on reliable artifact upload and download, checksum optimization, dry runs, and wildcard or regular-expression based file selection.

The release stream expanded from Artifactory-centered artifact operations into wider software-supply-chain work. The 2021 v2 line added and reorganized Xray scanning and audit commands, while later releases continued to add package ecosystem integrations, build-info handling, plugin support, and container-related workflows.

### Historique d'adoption

JFrog CLI became a natural package-manager target because it is a single executable used by build agents and developer laptops. Homebrew, Chocolatey, Scoop, winget, Linux distro packages, and JFrog's own install paths make it easy to pin in automation without embedding product-specific REST calls in every script.

Its adoption follows JFrog Artifactory's role as an artifact repository in CI/CD. Teams using Maven, Gradle, npm, Docker, NuGet, Python, and Go package flows can use one CLI surface to publish artifacts, collect build metadata, promote builds, and run security or compliance scans.

### Modes d'utilisation

Typical use centers on configuring a JFrog server, uploading and downloading artifacts, resolving dependencies, publishing build-info, scanning builds or packages with Xray, and promoting or distributing release artifacts. The `jf` executable is the shorter command name used alongside the older `jfrog` command.

The package is especially common in CI jobs because it can replace hand-written REST calls with commands that understand checksums, retries, build metadata, and package-manager conventions.

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

For package people, JFrog CLI is interesting because it sits at the boundary between language package managers and an enterprise artifact repository. It packages a large amount of repository-specific behavior into a portable CLI that can be installed by the same package managers it automates.

It also shows how artifact-management CLIs evolved from simple upload/download helpers into supply-chain tools that collect provenance, drive scans, and coordinate release promotion.

### Chronologie

- 2015: The public jfrog/jfrog-cli repository was created on GitHub.
- 2016: JFrog CLI 1.0.1 was tagged and released.
- 2021: The v2 release stream added Xray scan and audit commands and the shorter `jf` command style.
- 2022: Release notes show continued expansion around Docker, .NET, plugins, operational risk data, and build-info workflows.

### Related projects

- JFrog Artifactory is the central repository service automated by the CLI.
- JFrog Xray supplies the scan and audit workflows exposed through CLI commands.
- JFrog build-info tooling and jfrog-client-go provide related libraries and metadata plumbing used by the CLI.

### Sources

- <https://api.github.com/repos/jfrog/jfrog-cli>
- <https://api.github.com/repos/jfrog/jfrog-cli/releases>
- <https://formulae.brew.sh/formula/jfrog-cli>
- <https://github.com/jfrog/jfrog-cli>
- <https://raw.githubusercontent.com/jfrog/jfrog-cli/master/README.md>


## Notes de sécurité

narrow executable package without higher-risk signals.

- **Risque Geiger:** vert / faible
- narrow executable package without higher-risk signals


## 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: ~/.jfrog/jfrog-cli.conf.v6

## Credential files

- Unix: ~/.jfrog/jfrog-cli.conf.v6
## Détails de la base source

- **Source Database:** Homebrew formula API
- **Tap:** homebrew/core
- **Full Name:** jfrog-cli
- **Version Scheme:** 0
- **Revision:** 0
- **Head Version:** HEAD
- **Bottle Stable Root URL:** <https://ghcr.io/v2/homebrew/core>
- **Deprecated:** no
- **Disabled:** no
- **Keg Only:** no
- **URL Keys:** head, stable

## Autres enregistrements de gestionnaires de paquets

- Nix - jfrog-cli: normalized package name match | nixpkgs package indexes: pkgs/by-name/jf/jfrog-cli/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- apk - jfrog-cli - 2.45.0-r22: normalized package name match | Alpine Linux edge package indexes: jfrog-cli from https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz | JFrog cli | https://jfrog.com/getcli/
- dnf - jfrog-cli - 2.104.1-1.fc45: normalized package name match | Fedora Rawhide package metadata: jfrog-cli from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst | CLI to automate access to JFrog products | https://github.com/jfrog/jfrog-cli
- zypper - jfrog-cli - 2.107.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: jfrog-cli from https://download.opensuse.org/tumbleweed/repo/oss/repodata/be8d3611d25469107f32075a1697e69ec57a2b850b42348a658cc671ad5ec2b50760d02c3e59524d50da9a11d5be799bdaffba2e166e8ca8858512e3c0bd665d-primary.xml.zst | A client that automates access to the JFrog products | https://github.com/jfrog/jfrog-cli
- zypper - jfrog-cli-bash-completion - 2.107.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: jfrog-cli-bash-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/be8d3611d25469107f32075a1697e69ec57a2b850b42348a658cc671ad5ec2b50760d02c3e59524d50da9a11d5be799bdaffba2e166e8ca8858512e3c0bd665d-primary.xml.zst | Bash Completion for jfrog-cli | https://github.com/jfrog/jfrog-cli
- zypper - jfrog-cli-fish-completion - 2.107.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: jfrog-cli-fish-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/be8d3611d25469107f32075a1697e69ec57a2b850b42348a658cc671ad5ec2b50760d02c3e59524d50da9a11d5be799bdaffba2e166e8ca8858512e3c0bd665d-primary.xml.zst | Fish Completion for jfrog-cli | https://github.com/jfrog/jfrog-cli
- zypper - jfrog-cli-zsh-completion - 2.107.0-1.1: normalized package name match | openSUSE Tumbleweed package metadata: jfrog-cli-zsh-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/be8d3611d25469107f32075a1697e69ec57a2b850b42348a658cc671ad5ec2b50760d02c3e59524d50da9a11d5be799bdaffba2e166e8ca8858512e3c0bd665d-primary.xml.zst | Zsh Completion for jfrog-cli | https://github.com/jfrog/jfrog-cli
- Chocolatey - jfrog-cli: normalized package name match | Chocolatey community package catalog: jfrog-cli from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','jetbrains-rider'
- winget - JFrog.Cli: normalized package name match | Windows Package Manager source index: JFrog.Cli from https://cdn.winget.microsoft.com/cache/source.msix
- Nix - jf: installed executable or alias match | nixpkgs package indexes: pkgs/by-name/jf/jf/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- Scoop - main/jfrog: installed executable or alias match | Scoop official bucket manifest trees: bucket/jfrog.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1


## Liens liés

- [Cloud CLI packages](https://www.automicvault.com/fr/pkg/cloud-clis/) - Belongs to a cloud or infrastructure command family.
- [Terminal utility packages](https://www.automicvault.com/fr/pkg/terminal-utilities/) - Matched terminal and command-line workflow metadata.
- [Text processing packages](https://www.automicvault.com/fr/pkg/text-processing-tools/) - Matched text, document, or structured-data processing metadata.
- [Developer build packages](https://www.automicvault.com/fr/pkg/developer-build-tools/) - Matched build, compiler, generator, or developer workflow metadata.
- [go](https://www.automicvault.com/fr/pkg/brew/go/) - Build dependency declared by Homebrew.
- [massdriver](https://www.automicvault.com/fr/pkg/brew/massdriver/) - Shares av.db curated category or tags: cli, developer-tools, devops.
- [act](https://www.automicvault.com/fr/pkg/brew/act/) - Shares av.db curated category or tags: cli, developer-tools, devops.
- [changie](https://www.automicvault.com/fr/pkg/brew/changie/) - Shares av.db curated category or tags: cli, developer-tools, devops.
- [coder](https://www.automicvault.com/fr/pkg/brew/coder/) - Shares av.db curated category or tags: cli, developer-tools, devops.
- [flowpipe](https://www.automicvault.com/fr/pkg/brew/flowpipe/) - Shares av.db curated category or tags: cli, developer-tools, devops.
- [flyway](https://www.automicvault.com/fr/pkg/brew/flyway/) - Shares av.db curated category or tags: cli, developer-tools, devops.
- [gitea](https://www.automicvault.com/fr/pkg/brew/gitea/) - Shares av.db curated category or tags: cli, developer-tools, devops.
- [glab](https://www.automicvault.com/fr/pkg/brew/glab/) - Shares av.db curated category or tags: cli, developer-tools, devops.
- [livekit-cli](https://www.automicvault.com/fr/pkg/brew/livekit-cli/) - Local package facts share a topical domain. Shared terms: cli, command-line, developer, developer-tools, interface.
- [weaviate-cli](https://www.automicvault.com/fr/pkg/brew/weaviate-cli/) - Local package facts share a topical domain. Shared terms: cli, command-line, developer, developer-tools, interface.
- [langgraph-cli](https://www.automicvault.com/fr/pkg/brew/langgraph-cli/) - Local package facts share a topical domain. Shared terms: cli, command-line, developer, developer-tools, interface.

## Combined YAML source

View the package source record on GitHub. [combined/jfrog-cli.yml](https://github.com/automic-vault/db/blob/main/combined/jfrog-cli.yml)


## Sources

- Nucleus package database
- Geiger risk classifier
- package-page enrichment
- curated configuration and credential file locations
- curated package history
- package version freshness
- av.db category and tag curation
- package relationship graph
- external package-manager database matches
- cross-ecosystem install command graph
- curated agent safety answer
