# bitcoin mit Homebrew, apk, chocolatey, MacPorts, Nix, zypper, pacman installieren

Prüfe Installationswege, Executables, Metadaten und Sicherheitshinweise für bitcoin in AI-Agent-Workflows.

## Installation

```sh
sudo av install brew:bitcoin
```

Weitere Installationsbefehle:

### macOS

- Homebrew (100%):

```sh
brew install bitcoin
```

  Evidenz: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install bitcoin
```

  Evidenz: MacPorts ports tree: finance/bitcoin/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add bitcoin
```

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

- Nix (92%):

```sh
nix profile install nixpkgs#bitcoin
```

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

- zypper (92%):

```sh
sudo zypper install bitcoin-qt6
```

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

- pacman (92%):

```sh
sudo pacman -S bitcoin-daemon
```

  Evidenz: Arch Linux sync databases: bitcoin-daemon from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

### Windows

- Chocolatey (92%):

```sh
choco install bitcoin
```

  Evidenz: Chocolatey community package catalog: bitcoin from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='7.3108','pragmaticworksworkbenchserver'

## Paketfakten

- **Paketschlüssel:** brew:bitcoin
- **Paketmanager:** Homebrew
- **Version:** 31.1
- **Quellzusammenfassung:** Decentralized, peer to peer payment network
- **Homepage:** <https://bitcoincore.org/>
- **Repository:** <https://github.com/bitcoin/bitcoin>
- **Zuletzt aktualisiert:** 2026-07-10T03:17:47Z
- **Generiert:** 2026-08-03T19:37:03+00:00

## Executables

- bitcoin (Alias)
- bitcoin-cli (Alias)
- bitcoin-tx (Alias)
- bitcoin-util (Alias)
- bitcoin-wallet (Alias)
- bitcoind (Alias)

## Installationsverhalten

- Bottle: nicht verfügbar

## Version und Aktualität

- Seite generiert: 2026-08-03
- Manager-Version: 31.1
## Projektgeschichte und Nutzung

Bitcoin Core is the reference full-node implementation for the Bitcoin network. It descends directly from Satoshi Nakamoto's original Bitcoin client and packages the network node, wallet, RPC tools, transaction utilities, validation engine, and supporting documentation used by operators, developers, exchanges, researchers, and packagers.

### Projektgeschichte

Bitcoin Core's About page describes it as the open-source project that maintains and releases Bitcoin client software, and as a direct descendant of the original client released by Satoshi Nakamoto after the Bitcoin whitepaper. The current repository is the integration and staging tree for that software.

The software evolved from a combined GUI wallet and peer-to-peer node into a suite of command-line and GUI programs: `bitcoind` for daemonized full-node operation, `bitcoin-cli` for RPC calls, `bitcoin-tx` for transaction construction, `bitcoin-wallet` for wallet maintenance, and related utilities. The official README emphasizes full validation of blocks and transactions.

Major engineering milestones show the project adapting to scale and operational risk. The 0.8.0 release moved block and transaction indices to LevelDB, changed indexing defaults, added performance work for validation, and supported Bloom filters for lightweight clients. Later releases added network privacy and transport work, wallet changes, RPC evolution, and continuing platform support.

### Adoptionsgeschichte

Bitcoin Core became the default implementation against which much of the Bitcoin ecosystem measures consensus behavior, because full nodes independently validate blocks and transactions. Its correctness and review process matter beyond ordinary application packaging: a consensus bug can split money.

The project has broad package-manager presence in this batch: Homebrew, Alpine, Chocolatey, MacPorts, Nix, Arch, and openSUSE package some form of Bitcoin Core or its daemon. Official binary releases remain central, but package managers are important for operators who want reproducible installs, service integration, or policy-controlled upgrades.

The GitHub repository shows a large, active contributor base and continued releases through Bitcoin Core 31.0 in 2026. The README explicitly notes that testing and code review are the bottleneck and that the project is security-critical.

### Wie es verwendet wird

Operators run `bitcoind` or `bitcoin-qt` to join the peer-to-peer network, download blocks, validate consensus rules, maintain the UTXO set, relay transactions, and optionally serve wallet or RPC workflows. `bitcoin-cli` is the normal administrative interface for RPC calls.

Developers and power users use `bitcoin-tx`, `bitcoin-util`, `bitcoin-wallet`, regtest, signet, testnet, RPCs, and the documented data directory layout for testing, transaction work, wallet maintenance, and integration. The data directory contains chainstate, block files, indexes, wallets, `bitcoin.conf`, `.cookie`, and other operational files.

Packagers must care about platform support, bundled versus system libraries, database migrations, wallet formats, service files, man pages, and the difference between consensus-critical behavior and optional indexes or wallet features.

### Warum Paket-Nerds sich dafür interessieren

Bitcoin Core is one of the rare packages where packaging is inseparable from protocol safety. Build flags, dependency versions, wallet database behavior, runtime paths, and upgrade order can affect node operators managing real funds and participating in a live consensus network.

It is also a package-history landmark: a small open-source peer-to-peer client became a globally significant infrastructure package with daemon, CLI, GUI, RPC surface, reproducible-release culture, security advisories, and intense review norms.

For package nerds, its file layout is unusually educational. The official filesystem document names the blocks, chainstate, indexes, wallet databases, cookie authentication, generated config, and legacy migrations, making the package a concrete map of how a decentralized network client persists state.

### Zeitleiste

- 2008: The Bitcoin whitepaper is published.
- 2009: Satoshi Nakamoto releases the original Bitcoin client.
- 2010: The bitcoin/bitcoin GitHub repository is created as the public development tree.
- 2013: Bitcoin-Qt 0.8.0 adopts LevelDB for block and transaction indices and improves validation performance.
- 2021: Bitcoin Core 22.0 drops the leading 0.x versioning style and adds newer P2P network features such as I2P service support.
- 2026: Bitcoin Core 31.0 is published, showing continued active maintenance of the reference implementation.

### Related projects

- Bitcoin Core GUI development is split into the bitcoin-core/gui repository while the main bitcoin/bitcoin tree remains the integration tree.
- libsecp256k1 is maintained by the Bitcoin Core project for elliptic-curve cryptography used by Bitcoin.
- BIPs document protocol proposals and changes that Bitcoin Core may implement.
- Alternative Bitcoin node implementations and wallet software interoperate with the Bitcoin network but must match consensus behavior.
- LevelDB is an important storage dependency introduced for block and transaction indices in the 0.8.0 era.

### Quellen

- <https://api.github.com/repos/bitcoin/bitcoin>
- <https://api.github.com/repos/bitcoin/bitcoin/releases/latest>
- <https://bitcoincore.org/en/about/>
- <https://github.com/bitcoin/bitcoin>
- <https://raw.githubusercontent.com/bitcoin/bitcoin/master/README.md>
- <https://raw.githubusercontent.com/bitcoin/bitcoin/master/doc/files.md>
- <https://raw.githubusercontent.com/bitcoin/bitcoin/master/doc/release-notes/release-notes-0.8.0.md>
- <https://raw.githubusercontent.com/bitcoin/bitcoin/master/doc/release-notes/release-notes-22.0.md>
- input.json source_facts.package-manager


## Sicherheitshinweise

broad file, network, media, or database tool signal. formula declares a Homebrew service.

- **Geiger-Risiko:** orange / mittel
- broad file, network, media, or database tool signal
- formula declares a Homebrew service


## 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

- Linux: ~/.bitcoin/bitcoin.conf
- macOS: ~/Library/Application Support/Bitcoin/bitcoin.conf
- Windows: %LOCALAPPDATA%\Bitcoin\bitcoin.conf

## Credential files

- Linux: ~/.bitcoin/.cookie
- macOS: ~/Library/Application Support/Bitcoin/.cookie
- Windows: %LOCALAPPDATA%\Bitcoin\.cookie
## Andere Paketmanager-Einträge

- Nix - bitcoin: normalized package name match | nixpkgs package indexes: pkgs/by-name/bi/bitcoin/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- apk - bitcoin - 30.2-r2: normalized package name match | Alpine Linux edge package indexes: bitcoin from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Decentralized P2P electronic cash system | https://www.bitcoincore.org/
- apk - bitcoin-bench - 30.2-r2: normalized package name match | Alpine Linux edge package indexes: bitcoin-bench from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bitcoin Benchmarking Tools | https://www.bitcoincore.org/
- apk - bitcoin-cli - 30.2-r2: normalized package name match | Alpine Linux edge package indexes: bitcoin-cli from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bitcoin CLI | https://www.bitcoincore.org/
- apk - bitcoin-doc - 30.2-r2: normalized package name match | Alpine Linux edge package indexes: bitcoin-doc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Decentralized P2P electronic cash system (documentation) | https://www.bitcoincore.org/
- apk - bitcoin-openrc - 30.2-r2: normalized package name match | Alpine Linux edge package indexes: bitcoin-openrc from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Decentralized P2P electronic cash system (OpenRC init scripts) | https://www.bitcoincore.org/
- apk - bitcoin-qt - 30.2-r2: normalized package name match | Alpine Linux edge package indexes: bitcoin-qt from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bitcoin with a Qt frontend & QR Code support | https://www.bitcoincore.org/
- apk - bitcoin-tests - 30.2-r2: normalized package name match | Alpine Linux edge package indexes: bitcoin-tests from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bitcoin & Bitcoin-QT Unit Tests | https://www.bitcoincore.org/
- apk - bitcoin-tx - 30.2-r2: normalized package name match | Alpine Linux edge package indexes: bitcoin-tx from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bitcoin TX (Transaction Tool) | https://www.bitcoincore.org/
- zypper - bitcoin-qt6 - 31.1-1.2: normalized package name match | openSUSE Tumbleweed package metadata: bitcoin-qt6 from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | An end-user Qt6 GUI for the Bitcoin crypto-currency | https://bitcoin.org
- zypper - bitcoin-test - 31.1-1.2: normalized package name match | openSUSE Tumbleweed package metadata: bitcoin-test from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Automated tests for bitcoin client | https://bitcoin.org
- zypper - bitcoin-utils - 31.1-1.2: normalized package name match | openSUSE Tumbleweed package metadata: bitcoin-utils from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | An end-user CLI for the Bitcoin crypto-currency | https://bitcoin.org
- zypper - bitcoind - 31.1-1.2: normalized package name match | openSUSE Tumbleweed package metadata: bitcoind from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Headless daemon for Bitcoin crypto-currency | https://bitcoin.org
- MacPorts - bitcoin: normalized package name match | MacPorts ports tree: finance/bitcoin/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
- Chocolatey - bitcoin: normalized package name match | Chocolatey community package catalog: bitcoin from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='7.3108','pragmaticworksworkbenchserver'
- Nix - bitcoind: installed executable or alias match | nixpkgs package indexes: bitcoind from https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/top-level/all-packages.nix


## Combined YAML source

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


## Quellen

- 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
