- Open a terminal or command prompt.
- Run the following command to create a new Conda environment:
conda create -n project-daria python=3.10
- Activate the environment:
conda activate project-daria
Install the necessary Python packages from the requirements.txt
file:
pip install -r requirements.txt
To run the project, ensure you are in the Conda environment created in Step 1. Then:
- Start the SlimeVR application and ensure your SlimeVR device is connected.
- Start the slimeVR data capture script:
python capture_data_slimeVR.py
If you need to remove the Conda environment, follow these steps:
- Deactivate the environment (if active):
conda deactivate
- Delete the environment:
conda remove -n project-daria --all