From 52e3b91f5e8092f7a49b21544acac52f35ec5387 Mon Sep 17 00:00:00 2001 From: jllllll <3887729+jllllll@users.noreply.github.com> Date: Tue, 25 Jul 2023 23:55:08 -0500 Subject: [PATCH] Fix broken gxx_linux-64 package. (#106) --- webui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui.py b/webui.py index 080e94c..e534ab2 100644 --- a/webui.py +++ b/webui.py @@ -203,7 +203,7 @@ def update_dependencies(): gxx_output = run_cmd("g++ -dumpfullversion -dumpversion", environment=True, capture_output=True) if gxx_output.returncode != 0 or int(gxx_output.stdout.strip().split(b".")[0]) > 11: # Install the correct version of g++ - run_cmd("conda install -y -k gxx_linux-64=11.2.0", environment=True) + run_cmd("conda install -y -k gxx_linux-64=11.2.0 -c conda-forge", environment=True) # Compile and install GPTQ-for-LLaMa if os.path.exists('setup_cuda.py'):