-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Ashley Davis edited this page Apr 12, 2026
·
6 revisions
Before installing Photosphere CLI, install the required media processing tools. See Required-Tools for platform-specific installation instructions.
- Go to the Photosphere releases page
- Download the appropriate binary for your platform:
-
Linux:
psi-linux-x64orpsi-linux-arm64 -
Windows:
psi-windows-x64.exe -
macOS:
psi-macos-x64orpsi-macos-arm64
-
Linux:
After downloading, you need to make the binary executable:
# Rename for convenience (optional)
mv psi-linux-x64 psi # Linux
mv psi-macos-x64 psi # macOS
# 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 ./psiThis is safe for trusted software like Photosphere CLI.
For 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.
Test that everything works:
# Check that Photosphere CLI is working
psi --version
# Verify required tools are detected
psi toolsThe psi tools command will check that FFmpeg and ImageMagick are properly installed and accessible.
- Getting-Started-CLI - Detailed guide for using Photosphere
- Command-Reference - Complete list of CLI commands