From 2cd0e2d224e279b73780ed6d2c1b4cfce8d43e2b Mon Sep 17 00:00:00 2001 From: linpan Date: Fri, 1 Aug 2025 16:21:06 +0800 Subject: [PATCH] fix python version meson-python: error: The package requires Python version >=3.11, running on 3.10.18 --- runtime/python/install-python-runtime.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/python/install-python-runtime.sh b/runtime/python/install-python-runtime.sh index ad85318..cd26f2c 100644 --- a/runtime/python/install-python-runtime.sh +++ b/runtime/python/install-python-runtime.sh @@ -10,7 +10,7 @@ do done rm -f ~/.condarc -conda create -n sandbox-runtime -y python=3.10 +conda create -n sandbox-runtime -y python=3.11 source activate sandbox-runtime