Files
notecast/make_venv.sh
T
svlqd ecbbbfd5d1 Minor update
- added transcription folder with checker and transcription modules
- logger is a separated module now
2025-09-06 23:36:33 +03:00

13 lines
312 B
Bash

#!/bin/bash
set -e
ENV_NAME="notecast"
echo ">>> Creating environment $ENV_NAME from environment.yml"
conda env create -f environment.yml || conda env update -f environment.yml --prune
echo ">>> Activating environment"
eval "$(conda shell.bash hook)"
conda activate "$ENV_NAME"
echo ">>> Download completed!"