From 2e58988191af18b88fdf8200aead3f43b0e47de5 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Wed, 3 Mar 2021 18:57:20 +0100 Subject: [PATCH] [fix] utils/serax.sh create_pyenv() - drop duplicate 'pip install .' The wrong and unnecessary `pip install .` is executed in /usr/local/searx and is responsible for the error message: ERROR: File "setup.py" not found. Directory cannot be installed in editable mode: /usr/local/searx The correct pip-install comes right after changing to `cd ${SEARX_SRC}`. Signed-off-by: Markus Heiser --- utils/searx.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/searx.sh b/utils/searx.sh index a33642ee..cedefa7f 100755 --- a/utils/searx.sh +++ b/utils/searx.sh @@ -503,7 +503,6 @@ pip install -U pip pip install -U setuptools pip install -U wheel pip install -U pyyaml -pip install -U -e . cd ${SEARX_SRC} pip install -e . EOF