fix: use venv for Python services to support Debian 13 managed environment

This commit is contained in:
Gitead
2026-04-18 20:50:47 -04:00
parent 74f930b69a
commit 38f56decb1
4 changed files with 6 additions and 6 deletions

View File

@@ -2,6 +2,6 @@
"name": "seleniumserviceold",
"private": true,
"scripts": {
"postinstall": "pip install -r requirements.txt"
"postinstall": "python3 -m venv .venv && .venv/bin/pip install -r requirements.txt"
}
}