# ethereum を Homebrew, MacPorts, Nix, apk, pacman, scoop, winget でインストール

ethereum のインストール経路、実行ファイル、メタデータ、AI エージェント向けセキュリティノートを確認します。

## インストール

```sh
sudo av install brew:ethereum
```

追加のインストールコマンド:

### macOS

- Homebrew (100%):

```sh
brew install ethereum
```

  証拠: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install clef
```

  証拠: MacPorts ports tree: security/clef/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- Nix (92%):

```sh
nix profile install nixpkgs#era
```

  証拠: nixpkgs package indexes: pkgs/by-name/er/era/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- apk (92%):

```sh
sudo apk add geth
```

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

- pacman (92%):

```sh
sudo pacman -S go-ethereum
```

  証拠: Arch Linux sync databases: go-ethereum from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

### Windows

- Scoop (92%):

```sh
scoop install main/geth
```

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

- winget (92%):

```sh
winget install --id Ethereum.geth -e
```

  証拠: Windows Package Manager source index: Ethereum.geth from https://cdn.winget.microsoft.com/cache/source.msix

## パッケージ情報

- **パッケージキー:** brew:ethereum
- **パッケージマネージャ:** Homebrew
- **パッケージマネージャページ:** <https://formulae.brew.sh/formula/ethereum>
- **バージョン:** 1.17.4
- **ソース概要:** Official Go implementation of the Ethereum protocol
- **ホームページ:** <https://geth.ethereum.org/>
- **リポジトリ:** <https://github.com/ethereum/go-ethereum>
- **上流ドキュメント:** <https://geth.ethereum.org/docs>
- **ライセンス:** LGPL-3.0-or-later
- **ソースアーカイブ:** <https://github.com/ethereum/go-ethereum/archive/refs/tags/v1.17.4.tar.gz>
- **最終更新:** 2026-06-22T10:25:53Z
- **生成日時:** 2026-07-08T18:08:21+00:00

## 実行可能ファイル

- abidump (cli)
- abigen (cli)
- blsync (cli)
- clef (cli)
- devp2p (cli)
- era (cli)
- ethkey (cli)
- evm (cli)
- fetchpayload (cli)
- geth (cli)
- rlpdump (cli)
- workload (cli)
- abidump (エイリアス)
- abigen (エイリアス)
- blsync (エイリアス)
- clef (エイリアス)
- devp2p (エイリアス)
- era (エイリアス)
- ethkey (エイリアス)
- evm (エイリアス)
- fetchpayload (エイリアス)
- geth (エイリアス)
- rlpdump (エイリアス)
- workload (エイリアス)

## ビルド依存関係

- go

## インストール挙動

- post-install フック: 未定義
- Bottle: 利用可能 対象 arm64_linux, arm64_sequoia, arm64_sonoma, arm64_tahoe, sonoma, x86_64_linux

## バージョンと鮮度

- ページ生成日: 2026-07-08
- マネージャ版: 1.17.4
- マネージャ更新日: 2026-06-22
- ローカルデータ: OK
- 上流リポジトリ: https://github.com/ethereum/go-ethereum
- 検出された最新: v1.17.4 (最新)
## プロジェクトの歴史と使われ方

Geth, the Go implementation of Ethereum, is one of the original Ethereum clients and remains a central execution client for running Ethereum infrastructure. It packages the protocol implementation, node software, RPC server, JavaScript console, account tooling, and developer utilities into a command-line distribution familiar to node operators and package-manager users.

### プロジェクトの歴史

Geth grew out of Ethereum's early multi-client implementation strategy, where Go, C++, Python, and other clients helped launch and harden the network. The Ethereum Foundation's Frontier launch material in 2015 described the first live Ethereum milestone as a technical-user release where users voluntarily downloaded client software and generated the genesis block to join the network.

During the Homestead era in 2016, the Go client was called out as the Geth release line for Ethereum protocol and networking changes. Later Geth releases continued to track major protocol and storage needs; for example, Geth 1.13 introduced a new state database model with proper pruning after years of work on state storage growth.

### 採用の歴史

Official Geth documentation describes it as one of the original and most popular Ethereum clients, and the project homepage says it has been a core part of Ethereum since the beginning. Its adoption followed from being an official, production-grade execution client for Ethereum mainnet, testnets, private networks, and developer environments.

After Ethereum moved from proof of work to proof of stake, Geth's operational role changed from a standalone full-node client to the execution half of a two-client Ethereum node. Operators now pair it with a consensus client, but Geth still handles transaction gossip, state management, EVM execution, and user-facing RPC access.

### 使われ方

Geth is primarily controlled with the `geth` command. Users install it from packages, containers, or source, then use it to create accounts, sync chain data, join networks, expose JSON-RPC APIs, run the console, import or export chain data, and connect to consensus clients.

For application developers, Geth is also a local Ethereum interface: its RPC methods let tools and libraries query chain state, submit transactions, deploy smart contracts, and inspect execution. The Homebrew package also ships related utilities such as Clef, abigen, evm, devp2p, and rlpdump.

### パッケージ好きにとっての重要性

For package nerds, Geth is the canonical example of a blockchain node package whose installed binary is operational infrastructure rather than a simple CLI helper. Its formula matters because a packaged Geth must track protocol releases quickly, expose companion tools, and fit into local service, data-directory, and key-management conventions.

Geth also shows how packaging follows protocol architecture: the same executable that once ran a full Ethereum node now needs a consensus client and authenticated Engine API setup for production use, so install notes and version freshness have real network-compatibility consequences.

### タイムライン

- 2015: Ethereum Frontier launched as the first live Ethereum milestone for technical users and developers.
- 2016: Homestead used the Go Ethereum 1.3.x Geth release line for protocol and networking changes.
- 2022: Ethereum's proof-of-stake transition made Geth an execution client that must be paired with a consensus client for normal node operation.
- 2023: Geth 1.13 shipped a new state database model with proper pruning support.

### Related projects

- Consensus clients such as Lighthouse, Nimbus, Prysm, Teku, and Lodestar pair with Geth to form a complete proof-of-stake Ethereum node.
- Other Ethereum execution clients occupy the same client-diversity space, while Geth's bundled tools such as Clef and abigen support account signing and contract-binding workflows.

### ソース

- <https://geth.ethereum.org/>
- <https://geth.ethereum.org/docs>
- <https://geth.ethereum.org/docs/getting-started>
- <https://geth.ethereum.org/docs/fundamentals/command-line-options>
- <https://geth.ethereum.org/docs/fundamentals/node-architecture>
- <https://geth.ethereum.org/docs/getting-started/consensus-clients>
- <https://blog.ethereum.org/2015/07/22/frontier-is-coming-what-to-expect-and-how-to-prepare>
- <https://blog.ethereum.org/2016/02/29/homestead-release>
- <https://blog.ethereum.org/2023/09/12/geth-v1-13-0>


## セキュリティノート

ethereum に一致するローカルシークレット処理マニフェストは見つかりませんでした。将来の対応で安定したパッケージ URL を使えるよう、Nucleus パッケージメタデータはここに公開されています。



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


## Credential files

- Linux: ~/.ethereum/keystore
- macOS: ~/Library/Ethereum/keystore
- Windows: %LOCALAPPDATA%\Ethereum\keystore
## ソースデータベース詳細

- **Source Database:** Homebrew formula API
- **Tap:** homebrew/core
- **Full Name:** ethereum
- **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

## 他のパッケージマネージャ記録

- MacPorts - clef: installed executable or alias match | MacPorts ports tree: security/clef/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
- Nix - era: installed executable or alias match | nixpkgs package indexes: pkgs/by-name/er/era/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- apk - geth - 1.17.0-r3: installed executable or alias match | Alpine Linux edge package indexes: geth from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Official Go implementation of the Ethereum protocol | https://geth.ethereum.org/
- apk - geth-tools - 1.17.0-r3: installed executable or alias match | Alpine Linux edge package indexes: geth-tools from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Official Go implementation of the Ethereum protocol (extra tools: abigen, clef, evm, rlpdump) | https://geth.ethereum.org/
- pacman - go-ethereum - 1.17.1-1: installed executable or alias match | Arch Linux sync databases: go-ethereum from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | Official Go implementation of the Ethereum protocol | https://geth.ethereum.org/
- Scoop - main/geth: installed executable or alias match | Scoop official bucket manifest trees: bucket/geth.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1
- winget - Ethereum.geth: installed executable or alias match | Windows Package Manager source index: Ethereum.geth from https://cdn.winget.microsoft.com/cache/source.msix


## 関連リンク

- [Cloud CLI packages](https://www.automicvault.com/ja/pkg/cloud-clis/) - Belongs to a cloud or infrastructure command family.
- [Terminal utility packages](https://www.automicvault.com/ja/pkg/terminal-utilities/) - Matched terminal and command-line workflow metadata.
- [Language runtime packages](https://www.automicvault.com/ja/pkg/language-runtime-packages/) - Matched language runtime, compiler, or interpreter metadata.
- [Networking and protocol packages](https://www.automicvault.com/ja/pkg/networking-protocol-tools/) - Matched network, protocol, or remote-service metadata.
- [go](https://www.automicvault.com/ja/pkg/brew/go/) - Build dependency declared by Homebrew.
- [firefly](https://www.automicvault.com/ja/pkg/brew/firefly/) - Shares av.db curated category or tags: blockchain, cli, cloud-infrastructure.
- [chaoskube](https://www.automicvault.com/ja/pkg/brew/chaoskube/) - Shares av.db curated category or tags: cli, cloud-infrastructure, go.
- [crane](https://www.automicvault.com/ja/pkg/brew/crane/) - Shares av.db curated category or tags: cli, cloud-infrastructure, go.
- [gwctl](https://www.automicvault.com/ja/pkg/brew/gwctl/) - Shares av.db curated category or tags: cli, cloud-infrastructure, go.
- [harbor-cli](https://www.automicvault.com/ja/pkg/brew/harbor-cli/) - Shares av.db curated category or tags: cli, cloud-infrastructure, go.
- [havener](https://www.automicvault.com/ja/pkg/brew/havener/) - Shares av.db curated category or tags: cli, cloud-infrastructure, go.
- [ko](https://www.automicvault.com/ja/pkg/brew/ko/) - Shares av.db curated category or tags: cli, cloud-infrastructure, go.
- [qshell](https://www.automicvault.com/ja/pkg/brew/qshell/) - Shares av.db curated category or tags: cli, cloud-infrastructure, go.
- [s5cmd](https://www.automicvault.com/ja/pkg/brew/s5cmd/) - Both packages touch the same language runtime or ecosystem. Shared terms: cli, cloud, cloud-infrastructure, execution, go.
- [neonctl](https://www.automicvault.com/ja/pkg/npm/neonctl/) - Both packages touch the same language runtime or ecosystem. Shared terms: cli, client, cloud, cloud-infrastructure, infrastructure.

## Combined YAML source

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


## ソース

- 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
