diff --git a/bin/install-nplinker-deps b/bin/install-nplinker-deps index 59ca6b49..539a1f1d 100755 --- a/bin/install-nplinker-deps +++ b/bin/install-nplinker-deps @@ -57,8 +57,9 @@ if [[ "$OSTYPE" == "linux"* ]]; then if ${run_on_github}; then do_install="sudo apt install -y" else - apt update &> /dev/null - do_install="apt install -y" + 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 elif command -v dnf &> /dev/null; then echo -e "✅ Package manager is 'dnf'\n" diff --git a/requirements.txt b/requirements.txt index f8832376..4bf6d4d3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,6 @@ numpy pandas progress pyteomics -pytest-lazy-fixture scipy sortedcontainers tqdm