Skip to content

Commit 41df1d5

Browse files
authored
Update searxng-install.sh (#4322)
The build script in the repository needs to use the same Python virtualenv as the running one. This change is suggested from their docs: https://docs.searxng.org/admin/installation-searxng.html#install-searxng-dependencies
1 parent bcdf8f1 commit 41df1d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install/searxng-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ sudo -u searxng python3 -m venv /usr/local/searxng/searx-pyenv
4040
source /usr/local/searxng/searx-pyenv/bin/activate
4141
$STD pip install --upgrade pip setuptools wheel
4242
$STD pip install pyyaml
43-
$STD pip install -e /usr/local/searxng/searxng-src
43+
$STD pip install --use-pep517 --no-build-isolation -e /usr/local/searxng/searxng-src
4444
SECRET_KEY=$(openssl rand -hex 32)
4545
cat <<EOF >/etc/searxng/settings.yml
4646
# SearXNG settings

0 commit comments

Comments
 (0)