Installation#
🛠️ Installation#
Before installing XRAG, ensure that you have Python 3.11 or later installed.
Create a Virtual Environment via conda(Recommended)#
# Create a new conda environment
conda create -n xrag python=3.11
# Activate the environment
conda activate xrag
Install via pip#
You can install XRAG directly using pip
:
# Install XRAG
pip install examinationrag
# Install 'jury' without dependencies to avoid conflicts
pip install jury --no-deps