Menu

Windows

Windows 10/11 (64-bit)

Download .exe
Works in PowerShell, CMD & WSL2

macOS

macOS 11+ (Intel & Apple Silicon)

Download (Apple Silicon)

Linux

Any Linux distro (64-bit)

Download Binary
Ubuntu, Debian, Fedora, Arch, etc.
1

Download the binary

Click the download button above or use PowerShell:

Invoke-WebRequest -Uri "https://github.com/subrat-dwi/passman-cli/releases/latest/download/pman-windows-amd64.exe" -OutFile "$env:USERPROFILE\pman.exe"
2

Add to PATH (optional)

Move to a folder in your PATH or create one:

# Create bin folder and move binary
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\bin"
Move-Item "$env:USERPROFILE\pman.exe" "$env:USERPROFILE\bin\pman.exe"
# Add to PATH permanently
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";$env:USERPROFILE\bin", "User")
3

Verify installation

Open a new terminal and run:

pman --version
1

Download and install

Use curl to download and install in one command:

# For Apple Silicon (M1/M2/M3/M4)
curl -L https://github.com/subrat-dwi/passman-cli/releases/latest/download/pman-darwin-arm64 -o /usr/local/bin/pman && chmod +x /usr/local/bin/pman
# For Intel Macs
curl -L https://github.com/subrat-dwi/passman-cli/releases/latest/download/pman-darwin-amd64 -o /usr/local/bin/pman && chmod +x /usr/local/bin/pman
2

Allow in System Settings (first run)

macOS may block the first run. Go to System Settings → Privacy & Security and click "Allow Anyway".

3

Verify installation

pman --version
1

Download and install

Download to your local bin directory:

# Create local bin if it doesn't exist
mkdir -p ~/.local/bin
# Download and make executable
curl -L https://github.com/subrat-dwi/passman-cli/releases/latest/download/pman-linux-amd64 -o ~/.local/bin/pman chmod +x ~/.local/bin/pman
2

Add to PATH

Add this line to your ~/.bashrc or ~/.zshrc:

export PATH="$HOME/.local/bin:$PATH"
3

Reload and verify

source ~/.bashrc # or ~/.zshrc
pman --version
1

Clone the repository

Requires Go 1.21 or later:

git clone https://github.com/subrat-dwi/passman-cli.git
cd passman-cli
2

Build the binary

go build -o pman cmd/pman/main.go
3

Install to PATH

# Linux/macOS sudo mv pman /usr/local/bin/ # Windows (PowerShell) Move-Item pman.exe "$env:USERPROFILE\bin\pman.exe"

Quick Start

pman auth register

Create account

pman auth login

Authenticate

pman create

Add password

pman list

Browse vault

System Requirements