Add a flag to allow access to system Python packages on recent Linux distributions. #7173

This commit is contained in:
Dirk Heinrichs
2025-06-19 16:21:15 +05:30
committed by GitHub
parent 08d250e5ef
commit 44496a300e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ _create_python_virtualenv() {
cd "usr/${APP_NAME}" || exit
# Create the blank venv
"${SYSTEM_PYTHON_PATH}" -m venv venv
"${SYSTEM_PYTHON_PATH}" -m venv --system-site-packages venv
# shellcheck disable=SC1091
. venv/bin/activate