From 71b37d30792e9ac08066aba4ce867689c4cbfc35 Mon Sep 17 00:00:00 2001 From: Yehia Date: Tue, 3 Oct 2023 19:35:33 +0300 Subject: [PATCH] add wget to setup.sh `subprocess.run(["wget", "-O", model_filename, model_url], check=True)` breaks the server because wget is not installed --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 13a015c..1b5cb53 100644 --- a/setup.sh +++ b/setup.sh @@ -1,3 +1,3 @@ #! /bin/bash -apt-get install portaudio19-dev ffmpeg -y +apt-get install portaudio19-dev ffmpeg wget -y