summaryrefslogtreecommitdiff
path: root/utils/searx.sh
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2021-03-03 18:57:20 +0100
committerMarkus Heiser <markus.heiser@darmarit.de>2021-03-03 18:57:20 +0100
commit2e58988191af18b88fdf8200aead3f43b0e47de5 (patch)
treefcc9e90254ac711e2864d3f65b25dd87517b6202 /utils/searx.sh
parentc748fc66cf7c4a4ebfecde61dd683422dd6b3901 (diff)
downloadsearxng-2e58988191af18b88fdf8200aead3f43b0e47de5.tar.gz
searxng-2e58988191af18b88fdf8200aead3f43b0e47de5.zip
[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 <markus.heiser@darmarit.de>
Diffstat (limited to 'utils/searx.sh')
-rwxr-xr-xutils/searx.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/utils/searx.sh b/utils/searx.sh
index a33642ee4..cedefa7f1 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