# whisper-cpp を Homebrew, dnf, Nix, pacman, apk, scoop でインストール

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

## インストール

```sh
sudo av install brew:whisper-cpp
```

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

### macOS

- Homebrew (100%):

```sh
brew install whisper-cpp
```

  証拠: local Homebrew formula metadata

### Linux

- dnf (92%):

```sh
sudo dnf install whisper-cpp
```

  証拠: Fedora Rawhide package metadata: whisper-cpp 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#whisper-cpp
```

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

- pacman (92%):

```sh
sudo pacman -S whisper-cpp
```

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

- apk (92%):

```sh
sudo apk add whisper-server
```

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

### Windows

- Scoop (92%):

```sh
scoop install main/whisper-cpp
```

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

## パッケージ情報

- **パッケージキー:** brew:whisper-cpp
- **パッケージマネージャ:** Homebrew
- **バージョン:** 1.9.1
- **ソース概要:** Port of OpenAI's Whisper model in C/C++
- **ホームページ:** <https://github.com/ggml-org/whisper.cpp>
- **リポジトリ:** <https://github.com/ggml-org/whisper.cpp>
- **最終更新:** 2026-06-19T09:02:25Z
- **生成日時:** 2026-08-03T19:37:03+00:00

## 実行可能ファイル

- parakeet-cli (エイリアス)
- parakeet-quantize (エイリアス)
- whisper-bench (エイリアス)
- whisper-cli (エイリアス)
- whisper-command (エイリアス)
- whisper-lsp (エイリアス)
- whisper-quantize (エイリアス)
- whisper-server (エイリアス)
- whisper-stream (エイリアス)
- whisper-talk-llama (エイリアス)
- whisper-vad-speech-segments (エイリアス)

## インストール挙動

- Bottle: 利用不可

## バージョンと鮮度

- ページ生成日: 2026-08-03
- マネージャ版: 1.9.1
## プロジェクトの歴史と使われ方

whisper.cpp is Georgi Gerganov's C and C++ runtime for OpenAI's Whisper speech-recognition models. It appeared days after OpenAI released Whisper in September 2022 and turned the Python/PyTorch reference implementation into a small, portable, dependency-light local transcription tool.

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

OpenAI introduced Whisper on September 21, 2022 as an automatic speech recognition system trained on 680,000 hours of multilingual and multitask supervised data. The original OpenAI repository positioned Whisper as a general-purpose model for multilingual transcription, translation to English, and language identification.

The whisper.cpp repository was created on September 25, 2022. Its README describes the project as a port of OpenAI's Whisper model in C/C++, with the high-level model implementation contained in `whisper.h` and `whisper.cpp` and the lower-level tensor work handled by ggml. That made Whisper usable in environments where Python, PyTorch, or CUDA were undesirable or unavailable.

The project grew with ggml-style model conversion, quantization, platform backends, examples, bindings, and command-line tools. Its model documentation explains that original OpenAI PyTorch models are converted to ggml format for loading from C/C++, while project discussions and release notes document features such as integer quantization, streaming, server usage, and embedded-device experiments.

### 採用の歴史

whisper.cpp became one of the canonical local-AI command-line packages because it made a large neural speech model feel like a normal Unix tool: download a converted model, run an executable, and transcribe local audio without a cloud service. The upstream GitHub repository reported more than 51,000 stars and more than 5,700 forks via GitHub's API on July 2, 2026.

Its adoption also matters historically because it helped establish the ggml pattern later associated with local inference projects: compact C/C++ runtimes, quantized model files, CPU-first portability, and optional acceleration paths. In package-manager culture, whisper.cpp is the package people reach for when they want OpenAI Whisper behavior in scripts, media pipelines, offline transcription jobs, and low-power devices.

### 使われ方

Typical usage is local speech-to-text: converting or downloading a ggml-format Whisper model, running `whisper-cli` or related tools against audio, and emitting transcripts or timestamps. The repository also ships examples and executables for benchmarking, streaming microphone input, running a local server, quantizing models, and integrating with other applications through a C API or bindings.

The package is especially useful when privacy, offline operation, repeatable batch processing, or hardware portability matter more than managed cloud transcription. Users choose model size and quantization level as the tradeoff knob between accuracy, memory footprint, and speed.

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

For package nerds, whisper.cpp is a landmark local-inference package: it compressed a research model into a buildable C/C++ artifact that could live comfortably in Homebrew, Linux distributions, Docker images, mobile apps, WebAssembly experiments, and single-purpose transcription workflows.

It also became a reference point for later local-AI ports. When people compare local speech runtimes, they often distinguish broad cross-platform portability in whisper.cpp from Apple-specific Core ML and Neural Engine approaches such as WhisperKit, or Python/GPU-oriented projects such as faster-whisper.

### タイムライン

- 2022-09-21: OpenAI introduced Whisper and released model code and weights for multilingual speech recognition.
- 2022-09-25: The whisper.cpp GitHub repository was created.
- 2023: whisper.cpp discussions and releases documented integer quantization, streaming, and embedded-device experiments.
- 2026-07-02: GitHub API metadata showed the repository above 51,000 stars, reflecting broad adoption in the local-AI ecosystem.

### Related projects

- OpenAI Whisper is the upstream model and Python reference implementation.
- ggml is the low-level machine-learning library and model-format ecosystem used by whisper.cpp.
- WhisperKit targets Apple Silicon with Swift and Core ML rather than whisper.cpp's cross-platform C/C++ approach.

### ソース

- OpenAI Whisper announcement: https://openai.com/index/whisper/
- OpenAI Whisper repository: https://github.com/openai/whisper
- whisper.cpp GitHub API metadata: https://api.github.com/repos/ggml-org/whisper.cpp
- whisper.cpp model documentation: https://github.com/ggml-org/whisper.cpp/blob/master/models/README.md
- whisper.cpp repository and README: https://github.com/ggml-org/whisper.cpp
- whisper.cpp v1.4.0 quantization discussion: https://github.com/ggml-org/whisper.cpp/discussions/838


## セキュリティノート

broad file, network, media, or database tool signal.

- **Geiger リスク:** blue / 中
- broad file, network, media, or database tool signal

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

- Nix - whisper-cpp: normalized package name match | nixpkgs package indexes: pkgs/by-name/wh/whisper-cpp/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- apk - whisper-server - 1.9.1-r0: normalized package name match | Alpine Linux edge package indexes: whisper-server from https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz | whisper.cpp server | https://github.com/ggerganov/whisper.cpp
- apk - whisper-server-openrc - 1.9.1-r0: normalized package name match | Alpine Linux edge package indexes: whisper-server-openrc from https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz | whisper.cpp server (OpenRC init scripts) | https://github.com/ggerganov/whisper.cpp
- apk - whisper.cpp - 1.9.1-r0: normalized package name match | Alpine Linux edge package indexes: whisper.cpp from https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz | Port of OpenAI's Whisper model in C/C++ | https://github.com/ggerganov/whisper.cpp
- apk - whisper.cpp-dev - 1.9.1-r0: normalized package name match | Alpine Linux edge package indexes: whisper.cpp-dev from https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz | Port of OpenAI's Whisper model in C/C++ (development files) | https://github.com/ggerganov/whisper.cpp
- apk - whisper.cpp-libs - 1.9.1-r0: normalized package name match | Alpine Linux edge package indexes: whisper.cpp-libs from https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz | Port of OpenAI's Whisper model in C/C++ | https://github.com/ggerganov/whisper.cpp
- apk - whisper.cpp-vulkan - 1.9.1-r0: normalized package name match | Alpine Linux edge package indexes: whisper.cpp-vulkan from https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz | Port of OpenAI's Whisper model in C/C++ (Vulkan backend) | https://github.com/ggerganov/whisper.cpp
- dnf - whisper-cpp - 1.8.3-4.fc45: normalized package name match | Fedora Rawhide package metadata: whisper-cpp from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Port of OpenAI's Whisper model in C/C++ | https://github.com/ggerganov/whisper.cpp
- dnf - whisper-cpp-devel - 1.8.3-4.fc45: normalized package name match | Fedora Rawhide package metadata: whisper-cpp-devel from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Libraries and headers for whisper-cpp | https://github.com/ggerganov/whisper.cpp
- pacman - whisper-cpp - 1.9.1-1: normalized package name match | Arch Linux sync databases: whisper-cpp from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | Port of OpenAI's Whisper model in C/C++ | https://github.com/ggerganov/whisper.cpp
- Scoop - main/whisper-cpp: normalized package name match | Scoop official bucket manifest trees: bucket/whisper-cpp.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1


## Combined YAML source

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


## ソース

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