[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>
This commit is contained in:
Markus Heiser 2021-03-03 18:57:20 +01:00
parent c748fc66cf
commit 2e58988191
1 changed files with 0 additions and 1 deletions

View File

@ -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