Skip to main content

How to install and configure termux on Android

Note: don’t install from the Google Play Store, it is a highly stripped-down version of the original

The options present in my own priority order

  1. Download from GitHub releases

  2. Download using Fdroid

download from GitHub releases

Just go to GitHub releases, download the APK, and install it. We will see configuration steps later !

The only downside is you need to redownload on each release

download using FDroid

You can use Fdroid as package manager instead of Google play store

Now download completed what’s next

  • setup the nearest mirrors using termux-change-repo

  • setup the storage using termux-setup-storage

  • Do update and upgrade

termux configure nearest mirrors

Run termux-change-repo

And it will scan all the nearest repos and configure the default one which is the nearest

setup storage using termux-setup-storage

It usually asks for some permissions and do some storage setup don’t remember what is actually do but used it to fix a problem some time ago

do some PKG update and upgrade

Run command 

pkg update && pkg upgrade 

This will update and upgrade your system

Any further upgrades will be added you can also suggest edits I know my English may be bad I will read this once in a while and update it

Comments

Popular posts from this blog

Decoupling APIs Using Message Queues: Building Fault-Tolerant Applications πŸš€

  Decoupling APIs Using Message Queues: Building Fault-Tolerant Applications πŸš€ In the fast-paced world of modern software 🌐, seamless communication between services is a cornerstone of effective system design. However, what happens when your API sends a request, and the server at the other end is busy—or worse, the request gets dropped? 😱 It’s a scenario many developers dread, but with proper design patterns, you can make your applications robust and fault-tolerant. One of the most powerful tools to address this challenge is Message Queues (MQs) πŸ“¨. In this blog, we’ll explore how decoupling APIs using MQs can transform your application into a more resilient system πŸ’ͺ. The Problem: Busy Servers and Dropped Requests ❌ In traditional client-server architecture, a client sends a request to the server, and the server processes it synchronously. This works fine until: The server is overwhelmed : High traffic spikes πŸ“ˆ can cause bottlenecks. Requests are time-sensitive : A de...

πŸš€ Say Hello to UV: The Game-Changing Python Project Manager! πŸŽ‰

  Ready to turbocharge your Python development? Introducing UV , the all-in-one Python package and project manager that's rewriting the rules! ⚡ Built with blazing-fast Rust, UV replaces tools like pip , pip-tools , poetry , pyenv , and more — all while being 10-100x faster . Whether you're installing dependencies, managing Python versions, or publishing your projects, UV makes it a breeze. Backed by Astral — the creators of Ruff — UV is here to revolutionize how you work with Python. 🐍✨ 🌟 Why UV Will Be Your New Favorite Tool πŸš€ All-in-One Convenience Replace a dozen tools with UV, your one-stop solution for Python package management, virtual environments, and more! ⚡️ Insane Speed Get things done 10-100x faster than traditional tools like pip . 🐍 Python Version Pro? Yes, You! Install, switch, and manage Python versions with a single command. Never worry about compatibility again! πŸ› ️ Tools Made Easy Install and run Python-based CLI tools like a pro — ...