Skip to content

Uninstallation

djunekz edited this page Apr 10, 2026 · 2 revisions

Uninstallation

How to remove Termux App Store from your device.


Method 1 — pip (if installed via pip)

pip uninstall termux-app-store

Method 2 — tasctl (Recommended)

./tasctl uninstall

Method 3 — Script

bash uninstall.sh

Method 4 — Manual

rm -f $PREFIX/bin/termux-app-store
rm -rf $PREFIX/lib/.tas
sed -i '/termux-app-store/d' ~/.bashrc
sed -i '/termux-app-store/d' ~/.zshrc

What Is and Is Not Removed

Item Removed?
termux-app-store binary Yes
$PREFIX/lib/.tas/ directory Yes
Shell aliases Yes (if using tasctl)
packages/ folder (local clone) No
Packages installed via TAS No
Tools installed via TAS No

Packages and tools installed through TAS are standard Termux packages in $PREFIX. They are not affected by uninstalling TAS.


Reinstall After Uninstall

pip install termux-app-store

Or via script:

curl -fsSL https://raw.githubusercontent.com/djunekz/termux-app-store/main/install.sh | bash

See Also

Clone this wiki locally