fix(install): Add typing_extensions to Python dependencies (#11074)

- Include typing_extensions package in the venv installation step
This commit is contained in:
ZarenOFF
2026-01-23 13:10:03 +03:00
committed by GitHub
parent 1c05099713
commit 1a5f783078

View File

@@ -41,7 +41,7 @@ msg_info "Creating Python virtual environment"
sudo -H -u searxng bash -c '
python3 -m venv /usr/local/searxng/searx-pyenv &&
. /usr/local/searxng/searx-pyenv/bin/activate &&
pip install -U pip setuptools wheel pyyaml lxml msgspec &&
pip install -U pip setuptools wheel pyyaml lxml msgspec typing_extensions &&
pip install --use-pep517 --no-build-isolation -e /usr/local/searxng/searxng-src
'
msg_ok "Python environment ready"