Skip to content

Run on Android using Termux

Aahnik Daw edited this page Apr 21, 2021 · 11 revisions

The Termux app in Android offers you a full-blown Linux terminal.

image

Hopefully, you have already read the README for a basic introduction to tgcf.

Steps

  1. Install Termux from Google Play Store.
  2. Open termux and play around by running basic Linux commands like clear, ls, pwd etc.
  3. Install python.
       pkg install python
  4. Check if the proper version of python and pip got installed.
       python --version # should output above 3.9
       pip --version # should output above 20
  5. Now install tgcf via pip, which is python's official package manager.
       pip install tgcf==0.1.17
  6. Check if tgcf was installed correctly.
       tgcf --version # should output 0.1.17
       tgcf --help # will show you the CLI usage
  7. Learn about