Adjust python executable name

This commit is contained in:
dabruh 2024-04-11 12:21:20 +02:00
parent 1cf86dd7d5
commit aff2e3af98
1 changed files with 1 additions and 1 deletions

View File

@ -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"