# Installation This codebase is tested on Ubuntu 20.04.2 LTS with python 3.10. Follow the below steps to create environment and install dependencies. * Setup conda environment (recommended). ```bash # Create a conda environment conda create -y -n unimed-clip python=3.10 # Activate the environment conda activate unimed-clip # Install requirements pip install -r requirements.txt ```