From 5c396d7548cf1f6d2460e5b1425301d0c960fc50 Mon Sep 17 00:00:00 2001 From: clsty Date: Wed, 5 Feb 2025 08:53:20 +0800 Subject: [PATCH] Fix manual-install-helper.sh --- manual-install-helper.sh | 2 ++ scriptdata/installers | 7 +++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/manual-install-helper.sh b/manual-install-helper.sh index a761a5563..fe6749c69 100755 --- a/manual-install-helper.sh +++ b/manual-install-helper.sh @@ -15,3 +15,5 @@ install-Gabarito install-OneUI install-bibata install-MicroTeX +install-uv +install-python-packages diff --git a/scriptdata/installers b/scriptdata/installers index f6637f0a3..3da69dbaf 100644 --- a/scriptdata/installers +++ b/scriptdata/installers @@ -113,8 +113,11 @@ install-MicroTeX (){ x cd $base } -# Below command can be used to install uv, but it's already an Arch package so... -# curl -LsSf https://astral.sh/uv/install.sh | sh +install-uv (){ + x curl -LsSf https://astral.sh/uv/install.sh | sh +} + +# Both for Arch(based) and other distros. install-python-packages (){ x mkdir -p $PYTHON_VENV_PATH # we need python 3.12 https://github.com/python-pillow/Pillow/issues/8089