Skip to content

Android

Benny edited this page Aug 5, 2026 · 3 revisions

Warning

Ghost does not officially support Android. Please do not expect every feature to work or for patches to be made specifically to fix Android related bugs and support to be given. The following guide will show you how to get Ghost running through Termux from source code. This method of running Ghost is not entirely reliable and you will encounter bugs and commands not working.

Setup

  1. Update all packages
pkg up
  1. Install required packages
pkg install python-psutil python-tkinter libjpeg-turbo
  1. Clone Ghost's repo
git clone https://github.com/ghostselfbot/ghost
  1. Remove psutil from requirements.txt
sed -i '8d' requirements.txt
  1. Install all requirements
pip install -r requirements.txt
  1. Run Ghost in headless mode
python3 ghost.py --headless

Known Bugs

  • Image embeds do not work so you can only use embed mode or codeblock mode. Change them with [prefix]embedmode or [prefix]textmode.
  • Specs command doesn't work as requires root, if you are rooted try running Ghost in su.

Clone this wiki locally