Installation

PRISM is designed to be easy to install on Windows, macOS, and Linux.

Prerequisites

Manual Installation

If you prefer to set it up manually:

# 1. Clone the repository
git clone https://github.com/MRI-Lab-Graz/prism-studio.git
cd prism-studio

# 2. Create a virtual environment
python -m venv .venv

# 3. Activate the environment
# macOS/Linux:
source .venv/bin/activate
# Windows:
.venv\Scripts\activate

# 4. Install dependencies
pip install -r requirements.txt

Verifying Installation

To check if everything is installed correctly, try running the help command:

# macOS/Linux
source .venv/bin/activate
python prism.py --help

# Windows
.venv\Scripts\activate
python prism.py --help

If you see the help message, you are ready to go!