From 9256ba9c357eb546c49ddc86533357665d1de84b Mon Sep 17 00:00:00 2001 From: Lloyd Date: Mon, 2 Feb 2026 10:44:39 +0000 Subject: [PATCH] Remove force-reinstall option from pip install command in install_repeater function --- manage.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manage.sh b/manage.sh index 1dd9d5b..e37ce5b 100755 --- a/manage.sh +++ b/manage.sh @@ -336,7 +336,7 @@ EOF echo "Note: Using optimized binary wheels for faster installation" echo "" - if pip install --break-system-packages --force-reinstall --no-cache-dir .; then + if pip install --break-system-packages --no-cache-dir .; then echo "" echo "✓ Python package installation completed successfully!" @@ -597,7 +597,7 @@ EOF echo "⚠ Package update failed, but continuing..." fi - # Note: pymc_core is already reinstalled as part of the full --force-reinstall above + echo "" echo "✓ All packages including pymc_core reinstalled successfully"