| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| deepseek-artifacts-sha256.txt | 2026-05-08 | 890 Bytes | |
| deepseek-linux-arm64 | 2026-05-08 | 11.1 MB | |
| deepseek-linux-x64 | 2026-05-08 | 11.8 MB | |
| deepseek-macos-arm64 | 2026-05-08 | 9.3 MB | |
| deepseek-macos-x64 | 2026-05-08 | 10.5 MB | |
| deepseek-tui-linux-arm64 | 2026-05-08 | 44.4 MB | |
| deepseek-tui-linux-x64 | 2026-05-08 | 47.4 MB | |
| deepseek-tui-macos-arm64 | 2026-05-08 | 37.2 MB | |
| deepseek-tui-macos-x64 | 2026-05-08 | 39.4 MB | |
| deepseek-tui-windows-x64.exe | 2026-05-08 | 37.2 MB | |
| deepseek-windows-x64.exe | 2026-05-08 | 9.6 MB | |
| README.md | 2026-05-08 | 1.8 kB | |
| v0.8.21 source code.tar.gz | 2026-05-08 | 2.7 MB | |
| v0.8.21 source code.zip | 2026-05-08 | 3.0 MB | |
| Totals: 14 Items | 263.6 MB | 0 | |
Install
Recommended — npm (one command, both binaries)
:::bash
npm install -g deepseek-tui
The wrapper downloads both binaries from this Release and places them in the same directory.
Docker / GHCR
:::bash
docker run --rm -it \
-e DEEPSEEK_API_KEY="$DEEPSEEK_API_KEY" \
-v ~/.deepseek:/home/deepseek/.deepseek \
ghcr.io/hmbown/deepseek-tui:v0.8.21
The image ships the deepseek dispatcher and deepseek-tui runtime. The latest tag is also updated on release.
Cargo (Linux / macOS)
:::bash
cargo install deepseek-tui-cli deepseek-tui --locked
Both crates are required — deepseek-tui-cli produces the deepseek dispatcher and deepseek-tui produces the interactive runtime that the dispatcher delegates to. Installing only one binary will fail at runtime with a MISSING_COMPANION_BINARY error.
Manual download
Both binaries below must be downloaded for your platform and dropped into the same directory (e.g. ~/.local/bin/):
| Platform | Dispatcher | TUI runtime |
|---|---|---|
| Linux x64 | deepseek-linux-x64 |
deepseek-tui-linux-x64 |
| Linux ARM64 | deepseek-linux-arm64 |
deepseek-tui-linux-arm64 |
| macOS x64 | deepseek-macos-x64 |
deepseek-tui-macos-x64 |
| macOS ARM | deepseek-macos-arm64 |
deepseek-tui-macos-arm64 |
| Windows x64 | deepseek-windows-x64.exe |
deepseek-tui-windows-x64.exe |
Then chmod +x both (Unix) and run ./deepseek.
Verify (recommended)
Download deepseek-artifacts-sha256.txt from this Release and verify:
:::bash
# Linux
sha256sum -c deepseek-artifacts-sha256.txt
# macOS
shasum -a 256 -c deepseek-artifacts-sha256.txt
Changelog
See CHANGELOG.md (github.com) for the full notes for this release.