From 7469b2d5804e24b635ba3fcbe440332392ae68e2 Mon Sep 17 00:00:00 2001 From: bjimmyd <57251353+bjimmyd@users.noreply.github.com> Date: Wed, 4 Mar 2020 04:32:26 -0800 Subject: [PATCH] Updated python-pip3.sh Line 1 of python-pip3.sh (more specific apt-get upgrade) threw an error: E: Could not open lock file /var/lib/dpkg/lon-frontend - open (13: Permission denied) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root? Propopes change fixxed the problem. --- python-pip3.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-pip3.sh b/python-pip3.sh index 4f6cb23..9ead8db 100644 --- a/python-pip3.sh +++ b/python-pip3.sh @@ -1,4 +1,4 @@ -sudo apt-get update && apt-get upgrade +sudo apt-get update && apt-get dist-upgrade sudo apt-get install python3-distutils wget https://bootstrap.pypa.io/get-pip.py python3 get-pip.py --user