Download Passman CLI
Choose your platform and get started in under a minute
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
- 64-bit operating system (Windows 10+, macOS 11+, or Linux)
- ~10 MB disk space
- Internet connection (for syncing with server)
- Terminal/Command Line access