From 1a71278aa17e885f5dbb23cf7b3c20268928faf0 Mon Sep 17 00:00:00 2001 From: "Dr.-Ing. Amilcar do Carmo Lucas" Date: Mon, 13 May 2024 14:30:20 +0200 Subject: [PATCH] IMPROVEMENT: use sudo to uninstall serial and pyserial --- install_linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_linux.sh b/install_linux.sh index 7d343f6..f0b687e 100755 --- a/install_linux.sh +++ b/install_linux.sh @@ -10,7 +10,7 @@ sudo apt-get install -y python3-pil.imagetk # Uninstall serial and pyserial to avoid conflicts echo "Uninstalling serial and pyserial..." -python3 -m pip uninstall -y serial pyserial +sudo python3 -m pip uninstall -y serial pyserial # Install the project dependencies echo "Installing project dependencies..."