From 21e1f5f7b9fb9f2c181397f4f5bf35e0ddf8e54e Mon Sep 17 00:00:00 2001 From: Alexander Dusenbery Date: Wed, 28 Jan 2026 18:31:03 -0500 Subject: [PATCH] fix: make venv should not sudo --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 7df36d4..1b7e87e 100644 --- a/Makefile +++ b/Makefile @@ -36,11 +36,11 @@ ifeq ($(HAS_APT),) @exit 1 endif @echo "Installing Python $(PYTHON_VERSION) using apt-get..." - sudo apt-get update - sudo apt-get install -y software-properties-common - sudo add-apt-repository -y ppa:deadsnakes/ppa - sudo apt-get update - sudo apt-get install -y python$(PYTHON_VERSION) python$(PYTHON_VERSION)-venv python$(PYTHON_VERSION)-dev + apt-get update + apt-get install -y software-properties-common + add-apt-repository -y ppa:deadsnakes/ppa + apt-get update + apt-get install -y python$(PYTHON_VERSION) python$(PYTHON_VERSION)-venv python$(PYTHON_VERSION)-dev @echo "Python $(PYTHON_VERSION) installed successfully" else @echo "Found python3.11 at $(PYTHON311)"