From 71fc511c61f46a712b951dfec125349ccdbbb7da Mon Sep 17 00:00:00 2001 From: Kortho Date: Tue, 2 Jul 2019 09:14:35 +0200 Subject: [PATCH] added net-tools to debian-based install command needed to run the netstat command --- install_dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_dependencies.sh b/install_dependencies.sh index ac79f47..77742a2 100755 --- a/install_dependencies.sh +++ b/install_dependencies.sh @@ -36,7 +36,7 @@ if ! id zmqs >/dev/null 2>&1; then fi fi -sudo apt-get install python3-virtualenv virtualenv screen redis-server unzip -y +sudo apt-get install python3-virtualenv virtualenv screen redis-server unzip net-tools -y if [ -z "$VIRTUAL_ENV" ]; then virtualenv -p python3 DASHENV ; DASH_VENV=$?