From 8e24a208735be50ae64ef6656a412a7912520a8b Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Fri, 6 Mar 2026 07:39:50 -0800 Subject: [PATCH] Installer: Fix libstdcxx-ng version pin causing conda solver to hang on Python 3.13 --- one_click.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/one_click.py b/one_click.py index bf7c5909..67bd3a96 100644 --- a/one_click.py +++ b/one_click.py @@ -422,7 +422,7 @@ def update_requirements(initial_installation=False, pull=True): install_extensions_requirements() if is_linux(): - run_cmd(f"conda install -y -c conda-forge libstdcxx-ng=={LIBSTDCXX_VERSION_LINUX}", assert_success=True, environment=True) + run_cmd(f"conda install -y -c conda-forge 'libstdcxx-ng>={LIBSTDCXX_VERSION_LINUX}'", assert_success=True, environment=True) # Update PyTorch if not initial_installation: