This repository mirrors the official ProtonPass CLI binaries with daily updates.
Note: This is an unofficial mirror. For the most up-to-date information and official support, please visit the ProtonPass CLI documentation.
# Linux x86_64
curl -fsSL -o pass-cli https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/pass-cli-linux-x86_64
chmod +x pass-cli
# Linux aarch64
curl -fsSL -o pass-cli https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/pass-cli-linux-aarch64
chmod +x pass-cli# macOS x86_64 (Intel)
curl -fsSL -o pass-cli https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/pass-cli-macos-x86_64
chmod +x pass-cli
# macOS aarch64 (Apple Silicon)
curl -fsSL -o pass-cli https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/pass-cli-macos-aarch64
chmod +x pass-cliInvoke-WebRequest -Uri https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/pass-cli-windows-x86_64.zip -OutFile pass-cli.zip
Expand-Archive -Path pass-cli.zip -DestinationPath .If you use mise, you can install ProtonPass CLI directly from this mirror using the built-in github backend.
Install the latest version:
mise use github:tnfssc/protonpass-cli-binThis will:
- Automatically detect your platform (OS and architecture)
- Download the appropriate binary
- Install and make it available
# Install version 1.3.2
mise use github:tnfssc/protonpass-cli-bin@1.3.2
# Or always use latest
mise use github:tnfssc/protonpass-cli-bin@latestmise ls-remote github:tnfssc/protonpass-cli-binmise upgrade github:tnfssc/protonpass-cli-binTo make the installation persistent across shell sessions, add this to your ~/.config/mise/config.toml:
[tools]
"github:tnfssc/protonpass-cli-bin" = "latest"After installation, you can run the binary using mise exec:
mise exec -- pass-cli --version
mise exec -- pass-cli loginOr if you have mise properly activated in your shell, you can run it directly:
pass-cli --version
pass-cli loginNote: Check the installed binary path with
mise where github:tnfssc/protonpass-cli-binto verify the exact location.
Always verify the binary integrity using the SHA256 checksums:
# Download checksums
curl -fsSL -O https://github.com/tnfssc/protonpass-cli-bin/releases/latest/download/SHA256SUMS
# Verify your binary
sha256sum -c SHA256SUMS --ignore-missingOr manually check the hash:
# On Linux/macOS
sha256sum pass-cli
# On Windows
certutil -hashfile pass-cli SHA256# Move to ~/.local/bin (recommended)
mv pass-cli ~/.local/bin/
# Or install to /usr/local/bin (requires sudo)
sudo mv pass-cli /usr/local/bin/pass-cli loginBrowse all releases: Releases page
Download a specific version by replacing latest with the version tag:
curl -fsSL -o pass-cli https://github.com/tnfssc/protonpass-cli-bin/releases/download/v1.3.2/pass-cli-linux-x86_64This mirror is automatically updated daily at 00:00 UTC to include the latest stable release from the official ProtonPass CLI.
Each release includes the following binaries:
| Binary | Platform | Architecture |
|---|---|---|
pass-cli-linux-x86_64 |
Linux | x86_64 |
pass-cli-linux-aarch64 |
Linux | ARM64 |
pass-cli-macos-x86_64 |
macOS | x86_64 (Intel) |
pass-cli-macos-aarch64 |
macOS | ARM64 (Apple Silicon) |
pass-cli-windows-x86_64.zip |
Windows | x86_64 |
For mise users, the following archive files are also provided (auto-detected):
| Archive | Platform | Architecture |
|---|---|---|
pass-cli-linux-x64.tar.gz |
Linux | x86_64 |
pass-cli-linux-arm64.tar.gz |
Linux | ARM64 |
pass-cli-macos-x64.tar.gz |
macOS | x86_64 (Intel) |
pass-cli-macos-arm64.tar.gz |
macOS | ARM64 (Apple Silicon) |
pass-cli-windows-x64.tar.gz |
Windows | x86_64 |
- ProtonPass CLI Repository: https://github.com/protonpass/pass-cli
- ProtonPass CLI Documentation: https://protonpass.github.io/pass-cli/
- ProtonPass: https://proton.me/pass
For issues, questions, or feature requests related to the ProtonPass CLI itself, please use the official channels:
For issues specific to this mirror (e.g., missing releases, broken downloads), please open an issue.
The ProtonPass CLI is licensed under the GNU General Public License v3.0. See the official repository for more details.