From fd7c3c5bb0fe20fdde1e72ce882667ac4dc94591 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Sat, 15 Jun 2024 06:38:05 -0700 Subject: [PATCH] Don't git pull on installation (to make past releases installable) --- one_click.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/one_click.py b/one_click.py index bc30feb3..e94b6d44 100644 --- a/one_click.py +++ b/one_click.py @@ -315,7 +315,7 @@ def install_webui(): run_cmd("conda install -y libuv") # Install the webui requirements - update_requirements(initial_installation=True) + update_requirements(initial_installation=True, pull=False) def get_extensions_names():