Skip to content

CLI Reference

djunekz edited this page Apr 10, 2026 · 2 revisions

CLI Reference

Complete reference for all Termux App Store CLI commands.


Basic Syntax

termux-app-store [command] [arguments] [options]

Commands

termux-app-store (no arguments)

Opens the interactive TUI.

termux-app-store

list

Lists all packages available in the store.

termux-app-store list

Package status badges:

Badge Meaning
NEW Released less than 7 days ago
UPDATE A newer version is available
INSTALLED Installed and up to date
UNSUPPORTED A dependency is not available in Termux

show <package>

Shows full details for a package.

termux-app-store show baxter

install <package>

Builds and installs a package from source.

termux-app-store install baxter
termux-app-store i baxter

The install process:

  1. Reads metadata from build.sh
  2. Resolves and installs dependencies via apt-get
  3. Downloads source from TERMUX_PKG_SRCURL
  4. Verifies SHA256 checksum
  5. Runs the build and install steps
  6. Streams live log output

update

Updates the package index from the repository.

termux-app-store update

Run this before upgrade to ensure the latest package data is available.


upgrade

Upgrades all installed packages to their latest versions.

termux-app-store upgrade
termux-app-store upgrade baxter

search <keyword>

Searches packages by name or description.

termux-app-store search scanner
termux-app-store search "network tool"

remove <package>

Uninstalls a package.

termux-app-store remove baxter
termux-app-store uninstall baxter

version

Shows the installed TAS version and checks for updates.

termux-app-store version

help

Shows all available commands.

termux-app-store help
termux-app-store -h
termux-app-store --help

Global Options

Option Function
-h, --help Show help
--version Show version
-i <pkg> Install a package
-l, -L List packages
-v Show version

See Also

Clone this wiki locally