From 0c05b6534d08dc684a2c9c674d05718c31aceeb1 Mon Sep 17 00:00:00 2001 From: "Arjan Draisma (wur)" <74908173+adraismawur@users.noreply.github.com> Date: Tue, 12 Mar 2024 16:03:16 +0100 Subject: [PATCH] add explanation of sudo requirement Co-authored-by: Cunliang Geng --- bin/install-nplinker-deps | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/install-nplinker-deps b/bin/install-nplinker-deps index 60403d76..539a1f1d 100755 --- a/bin/install-nplinker-deps +++ b/bin/install-nplinker-deps @@ -57,6 +57,7 @@ if [[ "$OSTYPE" == "linux"* ]]; then if ${run_on_github}; then do_install="sudo apt install -y" else + echo "To use 'apt' command, you need to allow 'sudo apt' by providing your computer password" sudo apt update &> /dev/null do_install="sudo apt install -y" fi