Files
notecast/make_venv.ps1
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
386 B
PowerShell

$envName = "notecast"
Write-Output >>> Creating environment $envName from environment.yml"
conda env create -f environment.yml -n $envName
if ($LASTEXITCODE -ne 0) {
Write-Output ">>> Environment already exists, updating..."
conda env update -f environment.yml --prune
}
Write-Output ">>> Activating environment"
conda activate $envName
Write-Output ">>> Download completed!"