add wget to setup.sh

`subprocess.run(["wget", "-O", model_filename, model_url], check=True)` breaks the server because wget is not installed
This commit is contained in:
Yehia
2023-10-03 19:35:33 +03:00
committed by GitHub
parent b5f9f1ed08
commit 71b37d3079
+1 -1
View File
@@ -1,3 +1,3 @@
#! /bin/bash #! /bin/bash
apt-get install portaudio19-dev ffmpeg -y apt-get install portaudio19-dev ffmpeg wget -y