mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 12:50:11 +01:00
[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:
parent
c748fc66cf
commit
2e58988191
@ -503,7 +503,6 @@ pip install -U pip
|
|||||||
pip install -U setuptools
|
pip install -U setuptools
|
||||||
pip install -U wheel
|
pip install -U wheel
|
||||||
pip install -U pyyaml
|
pip install -U pyyaml
|
||||||
pip install -U -e .
|
|
||||||
cd ${SEARX_SRC}
|
cd ${SEARX_SRC}
|
||||||
pip install -e .
|
pip install -e .
|
||||||
EOF
|
EOF
|
||||||
|
Loading…
Reference in New Issue
Block a user