-
Notifications
You must be signed in to change notification settings - Fork 0
Installation CLI
The Photosphere CLI (psi) is a command-line tool for building and managing your media file database.
Before installing, install the required media processing tools (FFmpeg and ImageMagick). See Required-Tools for platform-specific instructions.
- Go to the Photosphere releases page.
- Find the latest numbered version (or the latest nightly build).
- Download the archive for your platform:
| Platform | File |
|---|---|
| Linux (x64) | photosphere-cli-linux-x64.tar.gz |
| macOS (Apple Silicon) | photosphere-cli-macos-arm64.tar.gz |
| macOS (Intel) | photosphere-cli-macos-x64.tar.gz |
| Windows (x64) | photosphere-cli-windows-x64.zip |
| Windows (x64, older CPUs) | photosphere-cli-windows-x64-baseline.zip |
Each archive contains the psi executable (psi.exe on Windows).
Windows baseline build: Use
photosphere-cli-windows-x64-baseline.ziponly if the standard build fails to start on an older CPU that lacks modern instruction sets. Otherwise usephotosphere-cli-windows-x64.zip.
Linux/macOS:
tar -xzf photosphere-cli-linux-x64.tar.gz # Linux
tar -xzf photosphere-cli-macos-arm64.tar.gz # macOS Apple Silicon
tar -xzf photosphere-cli-macos-x64.tar.gz # macOS IntelWindows: Extract the .zip archive (right-click → Extract All, or use your preferred tool).
# Make executable
chmod +x psi
# Verify permissions
ls -la psiYou should see permissions like -rwxr-xr-x.
macOS blocks unsigned binaries by default. Remove the quarantine attribute:
xattr -c ./psiFor system-wide access, move the binary to a directory in your PATH:
# Linux/macOS
sudo mv psi /usr/local/bin/
# Or create a local bin directory
mkdir -p ~/bin
mv psi ~/bin/
echo 'export PATH="$HOME/bin:$PATH"' >> ~/.bashrc
source ~/.bashrcWindows: Move psi.exe to a folder in your PATH, or add its location to your PATH environment variable.
# Check that the Photosphere CLI is working
psi --version
# Verify required tools are detected
psi toolsThe psi tools command checks that FFmpeg and ImageMagick are properly installed and accessible.
- Getting-Started-CLI - Detailed guide for using the Photosphere CLI
- Command-Reference - Complete list of CLI commands