From 1ba6886d17eb438955e4058010c9623621111eea Mon Sep 17 00:00:00 2001 From: Lukasz Liniewicz <75737665+lukaszliniewicz@users.noreply.github.com> Date: Mon, 15 Apr 2024 05:37:26 +0300 Subject: [PATCH] Added calibre to installed packages --- pandrator_start_minimal_silero.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandrator_start_minimal_silero.py b/pandrator_start_minimal_silero.py index fb89e10..cfd21f0 100644 --- a/pandrator_start_minimal_silero.py +++ b/pandrator_start_minimal_silero.py @@ -28,7 +28,7 @@ def install_choco(): run_command(['powershell', '-Command', "Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))"]) def install_dependencies(): - dependencies = ['git', 'curl', 'ffmpeg'] + dependencies = ['git', 'curl', 'ffmpeg', 'calibre'] for dependency in dependencies: if not check_program_installed(dependency): logging.info(f"Installing {dependency}...")