From 109d6e1ccf83ca3fc139ee041833009677685274 Mon Sep 17 00:00:00 2001 From: Christopher Fiola <36894544+ChrisFiola@users.noreply.github.com> Date: Tue, 18 Apr 2023 18:31:19 -0400 Subject: [PATCH] python3 luma install pip3 doesn't work. You have to use apt and python-xyz. This fixes the errors when running ./install.sh --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index f6394c3..bc9ee7c 100644 --- a/install.sh +++ b/install.sh @@ -2,8 +2,8 @@ echo "Install Luma.core drivers" apt update --fix-missing apt install python3.7-dev python3-pip libfreetype6-dev libjpeg-dev dsniff mitmproxy -y -pip3 install --upgrade luma.oled -pip3 install --upgrade luma.core +apt install --upgrade python3-luma.oled +apt install --upgrade python3-luma.core echo "Create directories" mkdir -p /root/BeBoXGui/{images,nmap} echo "Copying files"