how do I uninstall all packages installed by this repo? #24
-
|
how do I uninstall all packages installed by this repo? |
Beta Was this translation helpful? Give feedback.
Answered by
nicedreamzapp
Apr 22, 2026
Replies: 1 comment
-
|
Good question — no shipped uninstaller yet, but one's in review at #23 and should land soon. Manual cleanup in the meantime, for everything # Desktop launcher
rm -f "$HOME/Desktop/Claude Local.command"
# MLX server symlink dir + virtualenv
rm -rf "$HOME/.local/mlx-native-server"
rm -rf "$HOME/.local/mlx-server"
# Kill a running server if one's up
lsof -ti :4000 | xargs kill 2>/dev/null
# Server log
rm -f /tmp/mlx-server.log
# Downloaded models — can be 18-75 GB, check first
du -sh ~/.cache/huggingface/hub/models--mlx-community--Qwen* 2>/dev/null
du -sh ~/.cache/huggingface/hub/models--divinetribe--gemma* 2>/dev/null
# Then if you want them gone:
rm -rf ~/.cache/huggingface/hub/models--mlx-community--Qwen3.5-122B-A10B-4bit
rm -rf ~/.cache/huggingface/hub/models--mlx-community--Qwen3.5-4B-4bit
rm -rf ~/.cache/huggingface/hub/models--divinetribe--gemma-4-31b-it-abliterated-4bit-mlxWhat
If you also installed the optional iMessage scripts into |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nicedreamzapp
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good question — no shipped uninstaller yet, but one's in review at #23 and should land soon.
Manual cleanup in the meantime, for everything
setup.shcreates: