diff --git a/installer/install_dependencies.sh b/installer/install_dependencies.sh index d225632b3..6fde4144b 100755 --- a/installer/install_dependencies.sh +++ b/installer/install_dependencies.sh @@ -1,5 +1,9 @@ #!/bin/bash +# Install dependencies +echo Installing dependencies +sudo apt-get install -y make curl wget libltdl7 libseccomp2 libffi-dev gawk apt-transport-https ca-certificates curl gnupg gnupg-agent lsb-release software-properties-common sshpass pv + echo Enabling docker repository sudo mkdir -p /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg --yes @@ -12,10 +16,6 @@ echo \ echo Updating local repositories sudo apt-get update -# Install dependencies -echo Installing dependencies -sudo apt-get install -y make curl wget libltdl7 libseccomp2 libffi-dev gawk apt-transport-https ca-certificates curl gnupg gnupg-agent lsb-release software-properties-common sshpass pv - # Install python dependencies echo Installing Python dependencies sudo apt-get install -y python3-distutils