# Installer foundry avec Homebrew, apk, dnf, Nix, pacman, zypper, winget, scoop, apt

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

## installation

```sh
sudo av install brew:foundry
```

Commandes d'installation supplémentaires:

### macOS

- Homebrew (100%):

```sh
brew install foundry
```

  Preuve: local Homebrew formula metadata

### Linux

- apk (92%):

```sh
sudo apk add foundry
```

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

- dnf (92%):

```sh
sudo dnf install foundry
```

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

- Nix (92%):

```sh
nix profile install nixpkgs#foundry
```

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

- pacman (92%):

```sh
sudo pacman -S foundry
```

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

- zypper (92%):

```sh
sudo zypper install foundry
```

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

- Ubuntu apt (92%):

```sh
sudo apt install forge-doc
```

  Preuve: Ubuntu 24.04 LTS package indexes: forge-doc from https://archive.ubuntu.com/ubuntu/dists/noble/universe/binary-amd64/Packages.gz

### Windows

- winget (92%):

```sh
winget install --id Microsoft.FoundryLocal -e
```

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

- Scoop (92%):

```sh
scoop install main/chisel
```

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

## Faits du paquet

- **Clé du paquet:** brew:foundry
- **Gestionnaire de paquets:** Homebrew
- **Page du gestionnaire de paquets:** <https://formulae.brew.sh/formula/foundry>
- **Version:** 1.7.1
- **Résumé source:** Blazing fast, portable and modular toolkit for Ethereum application development
- **Page d'accueil:** <https://github.com/foundry-rs/foundry>
- **Dépôt:** <https://github.com/foundry-rs/foundry>
- **Licence:** MIT OR Apache-2.0
- **Archive source:** <https://github.com/foundry-rs/foundry.git>
- **Dernière mise à jour:** 2026-05-08T09:43:00Z
- **Généré:** 2026-08-04T22:13:35+00:00

## exécutables

- anvil (cli)
- cast (cli)
- chisel (cli)
- forge (cli)
- anvil (alias)
- cast (alias)
- chisel (alias)
- forge (alias)

## Dépendances

- libusb

## Dépendances de compilation

- help2man
- rust

## 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-08-04
- version du gestionnaire: 1.7.1
- gestionnaire mis à jour: 2026-05-08
- données locales: OK
- dépôt amont: https://github.com/foundry-rs/foundry
- info: No cached GitHub release or tag data was available.
## Historique du projet et usages

Foundry is a Rust-written toolkit for Ethereum application development. The package ships the `forge`, `cast`, `anvil`, and `chisel` commands for building and testing Solidity contracts, interacting with EVM chains, running a local node, and using a Solidity REPL.

### Historique du projet

The `foundry-rs/foundry` repository was created in 2021. Its README presents Foundry as a fast, portable, modular Ethereum development toolkit and splits the suite into Forge, Cast, Anvil, and Chisel.

The official docs now organize Foundry around installation with `foundryup`, project setup, dependencies, Forge workflows, Cast chain interaction, Anvil local node usage, Chisel sessions, and `foundry.toml` configuration.

### Historique d'adoption

Foundry became a common smart-contract development package because it moved the Ethereum workflow into fast local CLIs: Solidity tests through Forge, forked-chain testing through Anvil, RPC and wallet tasks through Cast, and repeatable installs through `foundryup`, GitHub Releases, Docker, Homebrew, and source builds.

### Modes d'utilisation

The README's basic workflow is `forge init`, `forge build`, and `forge test`; common operational workflows include `cast block-number`, `cast balance`, and `anvil --fork-url` for a forked local chain. Configuration is kept in `foundry.toml` with profiles and environment-variable overrides.

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

Foundry is important in package history because it packaged a complete blockchain developer workstation as native CLIs rather than a JavaScript-only toolchain. It also made release management and version switching part of the package story through `foundryup`, nightly builds, binary attestations, Docker images, and Cargo builds.

### Chronologie

- 2021: The public `foundry-rs/foundry` repository was created.
- 2026: GitHub tags included stable v1.7.x releases and GitHub Releases continued to publish nightly builds.
- 2026: The official installation docs described `foundryup` as the installer and version manager and listed precompiled binaries, Docker, and source builds as alternatives.

### Related projects

- Foundry is related to Ethereum, Solidity, EVM-compatible chains, GitHub artifact attestations, Docker images, Cargo/Rust builds, and the earlier smart-contract tooling ecosystem that it complements or replaces in many projects.

### Sources

- <https://api.github.com/repos/foundry-rs/foundry>
- <https://api.github.com/repos/foundry-rs/foundry/releases>
- <https://api.github.com/repos/foundry-rs/foundry/tags>
- <https://getfoundry.sh/>
- <https://getfoundry.sh/config/>
- <https://getfoundry.sh/forge/>
- <https://getfoundry.sh/introduction/installation>
- <https://github.com/foundry-rs/foundry>
- <https://raw.githubusercontent.com/foundry-rs/foundry/master/README.md>


## Notes de sécurité

Aucun manifest local de gestion des secrets correspondant n'a été trouvé pour foundry. Les métadonnées de paquet 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: foundry.toml, ~/.foundry/foundry.toml
## Détails de la base source

- **Source Database:** Homebrew formula API
- **Tap:** homebrew/core
- **Full Name:** foundry
- **Version Scheme:** 0
- **Revision:** 0
- **Head Version:** HEAD
- **Conflicts With:** chisel-tunnel, jboss-forge
- **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 - foundry: normalized package name match | nixpkgs package indexes: pkgs/by-name/fo/foundry/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- apk - foundry - 1.1.1-r0: normalized package name match | Alpine Linux edge package indexes: foundry from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Companion command-line tool for IDE features of GNOME Builder | https://gitlab.gnome.org/GNOME/foundry
- apk - foundry-bash-completion - 1.1.1-r0: normalized package name match | Alpine Linux edge package indexes: foundry-bash-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bash completions for foundry | https://gitlab.gnome.org/GNOME/foundry
- apk - foundry-dev - 1.1.1-r0: normalized package name match | Alpine Linux edge package indexes: foundry-dev from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Companion command-line tool for IDE features of GNOME Builder (development files) | https://gitlab.gnome.org/GNOME/foundry
- apk - foundry-doc - 1.1.1-r0: normalized package name match | Alpine Linux edge package indexes: foundry-doc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Companion command-line tool for IDE features of GNOME Builder (documentation) | https://gitlab.gnome.org/GNOME/foundry
- apk - foundry-lang - 1.1.1-r0: normalized package name match | Alpine Linux edge package indexes: foundry-lang from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Languages for package foundry | https://gitlab.gnome.org/GNOME/foundry
- apk - foundry-libs - 1.1.1-r0: normalized package name match | Alpine Linux edge package indexes: foundry-libs from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Companion command-line tool for IDE features of GNOME Builder (libraries) | https://gitlab.gnome.org/GNOME/foundry
- dnf - foundry - 1.2~alpha-2.fc45: normalized package name match | Fedora Rawhide package metadata: foundry from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst | IDE library and command-line companion tool | https://gitlab.gnome.org/GNOME/foundry
- dnf - libfoundry - 1.2~alpha-2.fc45: normalized package name match | Fedora Rawhide package metadata: libfoundry from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst | IDE library and command-line companion tool (shared library) | https://gitlab.gnome.org/GNOME/foundry
- dnf - libfoundry-devel - 1.2~alpha-2.fc45: normalized package name match | Fedora Rawhide package metadata: libfoundry-devel from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst | IDE library and command-line companion tool (development files) | https://gitlab.gnome.org/GNOME/foundry
- dnf - libfoundry-gtk - 1.2~alpha-2.fc45: normalized package name match | Fedora Rawhide package metadata: libfoundry-gtk from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst | IDE library and command-line companion tool (GTK integration) | https://gitlab.gnome.org/GNOME/foundry
- dnf - libfoundry-gtk-devel - 1.2~alpha-2.fc45: normalized package name match | Fedora Rawhide package metadata: libfoundry-gtk-devel from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/210a2053c8e007daf9ae39c2a21daaed9b2ddd07d63ecffa597050361e73650c-primary.xml.zst | IDE library and command-line companion tool (development files) | https://gitlab.gnome.org/GNOME/foundry
- pacman - foundry - 1.1.1-1: normalized package name match | Arch Linux sync databases: foundry from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | Aims to extract much of what makes GNOME Builder an IDE into a library and companion command-line tool | https://gitlab.gnome.org/GNOME/foundry
- zypper - foundry - 1.1.1-1.4: normalized package name match | openSUSE Tumbleweed package metadata: foundry from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | IDE library and command-line companion tool | https://gitlab.gnome.org/GNOME/foundry
- zypper - foundry-devel - 1.1.1-1.4: normalized package name match | openSUSE Tumbleweed package metadata: foundry-devel from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | IDE library and command-line companion tool (development files) | https://gitlab.gnome.org/GNOME/foundry
- zypper - libfoundry-1-1 - 1.1.1-1.4: normalized package name match | openSUSE Tumbleweed package metadata: libfoundry-1-1 from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | IDE library and command-line companion tool | https://gitlab.gnome.org/GNOME/foundry


## Liens liés

- [Source-control packages](https://pkg.so/fr/source-control-tools/) - Belongs to a source-control command family.
- [Terminal utility packages](https://pkg.so/fr/terminal-utilities/) - Matched terminal and command-line workflow metadata.
- [Text processing packages](https://pkg.so/fr/text-processing-tools/) - Matched text, document, or structured-data processing metadata.
- [Developer build packages](https://pkg.so/fr/developer-build-tools/) - Matched build, compiler, generator, or developer workflow metadata.
- [rust](https://pkg.so/fr/brew/rust/) - Build dependency declared by Homebrew.
- [help2man](https://pkg.so/fr/brew/help2man/) - Build dependency declared by Homebrew.
- [solc-select](https://pkg.so/fr/brew/solc-select/) - Shares pkgdb curated category or tags: cli, developer-tools, ethereum, smart-contracts, solidity.
- [solhint](https://pkg.so/fr/brew/solhint/) - Shares pkgdb curated category or tags: cli, developer-tools, ethereum, smart-contracts, solidity.
- [truffle](https://pkg.so/fr/brew/truffle/) - Shares pkgdb curated category or tags: cli, developer-tools, ethereum, evm, smart-contracts.
- [sui](https://pkg.so/fr/brew/sui/) - Shares pkgdb curated category or tags: cli, developer-tools, smart-contracts.
- [aptos](https://pkg.so/fr/brew/aptos/) - Shares pkgdb curated category or tags: cli, developer-tools, smart-contracts.
- [stellar-cli](https://pkg.so/fr/brew/stellar-cli/) - Shares pkgdb curated category or tags: cli, developer-tools, smart-contracts.
- [clarinet](https://pkg.so/fr/brew/clarinet/) - Shares pkgdb curated category or tags: cli, developer-tools, smart-contracts.
- [anchor](https://pkg.so/fr/brew/anchor/) - Shares pkgdb curated category or tags: cli, developer-tools, smart-contracts.
- [ganache](https://pkg.so/fr/npm/ganache/) - Local package facts share a topical domain. Shared terms: cli, contracts, developer, developer-tools, development.
- [ethereum-waffle](https://pkg.so/fr/npm/ethereum-waffle/) - Local package facts share a topical domain. Shared terms: cli, contracts, developer, developer-tools, ethereum.

## Combined YAML source

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


## Sources

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