From aff2e3af98f212356e337c6f0ddc1f1ca83bb606 Mon Sep 17 00:00:00 2001 From: dabruh <11458706-dabruh@users.noreply.gitlab.com> Date: Thu, 11 Apr 2024 12:21:20 +0200 Subject: [PATCH] Adjust python executable name --- setup_system.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_system.sh b/setup_system.sh index fb79cd0..0f4d4ee 100755 --- a/setup_system.sh +++ b/setup_system.sh @@ -86,7 +86,7 @@ function setup_pip_packages() { echo "Installing Python packages into virtualenv $python_venv" ! [ -d "$opt_dir" ] && sudo mkdir "$opt_dir" - sudo python -m venv "$python_venv" + sudo python3 -m venv "$python_venv" # shellcheck disable=SC1091 source "$python_venv/bin/activate"