Installation¶
To get started with the ROSE, you'll first need to install it on your machine or the targeted cluster. Below are the steps to install it on different operating systems. For a full list of the supported HPC machines, please refer to the following link: RADICAL-Pilot Supported HPC Machines
For Linux and macOS 🐧¶
- Clone the latest version from the official website.
git clone https://github.com/radical-cybertools/ROSE.git
- Run the following commands to install ROSE and its dependencies:
cd ROSE pip install .
For Windows Machines 🖥️¶
- Download the Windows WSL installer from the official website.
- Setup you WSL user name and password.
- Make sure you have Python 3.9 or higher in your WSL as follows:
python --version
- create new pip virtual env:
python3 -m venv rose_env
- Activate the env:
source rose_env/bin/activate
- Clone the latest version from the official website.
git clone https://github.com/radical-cybertools/ROSE.git
- Run the following commands to install ROSE and its dependencies:
cd ROSE pip install .
If you encounter any issues, refer to the Issues Section.