From 7e95311c1418874dffd47b18e53e4bd3ee28e3ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Fri, 22 Mar 2024 00:04:34 +0100 Subject: [PATCH] fix call to pip --- scripts/install | 2 +- scripts/upgrade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 663f07d..f42dda9 100644 --- a/scripts/install +++ b/scripts/install @@ -24,7 +24,7 @@ ynh_script_progression --message="Building app..." --weight=5 python3 -m venv "$install_dir/venv" -ynh_exec_warn_less "$install_dir/venv/bin/python3" pip install \ +ynh_exec_warn_less "$install_dir/venv/bin/python3" -m pip install \ jupyterlab=="$(jupyterlab_upstream_version)" \ jupyterhub \ jupyter_collaboration \ diff --git a/scripts/upgrade b/scripts/upgrade index af2e871..4a5e48e 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -32,7 +32,7 @@ ynh_script_progression --message="Building app..." --weight=15 ynh_secure_remove --file="$install_dir/.venv" python3 -m venv "$install_dir/venv" -ynh_exec_warn_less "$install_dir/venv/bin/python3" pip install \ +ynh_exec_warn_less "$install_dir/venv/bin/python3" -m pip install \ jupyterlab=="$(jupyterlab_upstream_version)" \ jupyterhub \ jupyter_collaboration \