From f972acbc806ffa2c4a0f52d56ff1140a43386aa4 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Sat, 16 Dec 2023 05:38:32 +0000 Subject: [PATCH] [ADD] pip install: support selenium (with python 3.7 strangely) --- script/install/install_locally.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script/install/install_locally.sh b/script/install/install_locally.sh index 0b9dbfb..8d49c10 100755 --- a/script/install/install_locally.sh +++ b/script/install/install_locally.sh @@ -119,6 +119,8 @@ if [[ ! -f "${POETRY_PATH}" ]]; then echo "Poetry installation error." exit 1 fi + # Fix pip installation missing package + ${VENV_PATH}/bin/pip install selenium fi # Delete artifacts created by pip, cause error in next "poetry install"