From 917389670b52fb6c869b38da874cc8d8a891e2f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Sigr=C3=A9?= Date: Sun, 27 Dec 2020 19:59:19 +1100 Subject: [PATCH] Added 'wget' as a dependency 'wget' is a dependency as without this additional components won't download as part of initial install, one such example is; ``` wget -O /ail-framework/ardb/src/../deps/jemalloc-5.1.0.tar.bz2 https://github.com/jemalloc/jemalloc/releases/download/5.1.0/jemalloc-5.1.0.tar.bz2 && \ ``` --- installing_deps.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/installing_deps.sh b/installing_deps.sh index 1380a02c..c4b1ad30 100755 --- a/installing_deps.sh +++ b/installing_deps.sh @@ -11,6 +11,9 @@ sudo apt-get update sudo apt-get install python3-pip virtualenv python3-dev python3-tk libfreetype6-dev \ screen g++ python-tk unzip libsnappy-dev cmake -qq +#Needed for downloading jemalloc +sudo apt-get install wget -qq + #optional tor install sudo apt-get install tor -qq