Installation & Setup¶
Install Prism¶
Download the latest tarball from the releases page, extract, and add to your PATH.
Verify:
Connect AWS credentials¶
Prism uses your AWS credentials to launch instances in your account.
Step 1 — Configure the AWS CLI (skip if already done):
Verify it works:
Step 2 — Add a Prism profile:
This interactive wizard links a Prism profile name to your AWS credentials and default region. You only need to do this once.
For detailed IAM permission requirements, see the Administrator Guide.
First-time setup wizard¶
If this is your first time running Prism, the init wizard covers AWS setup, profile creation, and a test launch:
Launch your first workspace¶
# See what's available
prism templates
# Launch a Python + Jupyter environment
prism workspace launch python-ml my-first-project
# Check it's ready (takes ~2 minutes)
prism workspace list
# Get connection info
prism workspace connect my-first-project
prism workspace connect prints the SSH command and any web service URLs (Jupyter, RStudio, etc.).
Two interfaces¶
CLI¶
The prism command is the primary interface. It's scriptable and works in automated pipelines.
GUI (desktop app)¶
A visual desktop app for managing workspaces, storage, and settings.
Or launch Prism from your Applications folder (macOS) / Start menu (Windows).
Common workflows¶
Data science¶
prism workspace launch python-ml data-analysis --size L
prism workspace connect data-analysis
# Jupyter is available at http://localhost:8888 via SSH tunnel
R / statistics¶
prism workspace launch r-research stats-project
prism workspace connect stats-project
# RStudio Server available at http://localhost:8787 via SSH tunnel
Shared storage¶
Cost management¶
Stop workspaces when not in use — stopped instances have no compute cost:
Hibernation preserves RAM state and reduces cost further:
Troubleshooting¶
"Daemon not running"
"AWS credentials not found"
Instance launch fails
For more, see the Troubleshooting Guide.
Next steps¶
- Quick Start — 5-minute guide
- CLI Reference — all commands
- GUI Guide — desktop app
- Templates — template format and customization