An Unhelpful Guide for Running Python Scripts on Mobile Devices

You can run Python scripts via Termux, the same app that lets you run SillyTavern.

Open Termux and Run:

pkg update && pkg upgrade

Then install Python:

pkg install python

Now, install additional packages (if you skip this you will be prompted later):

pip install flask requests

The following steps are similar to how you ran your script on PC.

Place the script in an empty folder.

Open Termux and navigate to the directory containing the script using cd.

Now Run:

python [script filename].py

If you saved the script anywhere other than /data/data/com.termux/files/home, then you may need to allow additional permissions for Termux for this to work.

As usual, you will be prompted to authenticate.

Now keep Termux open and swipe from the left edge of the screen. You will now see an option to open a NEW SESSION.

In the new Termux session, cd back to your SillyTavern directory to launch it.

Connect to the right custom endpoint.


Uhhhh.... REMEMBER to use CTRL+C on the Termux command line once you're done. Otherwise the python/flask process doesn't actually die. Apparently, it doesn't do that on it's own, keeping your port 5000 occupied until it gets liberated by the Western Allies. Should this happen, you'll have to manually hunt down the process ID using

ps aux | grep python

Then lookup the process ID of the script you were using and manually kill it with

kill -9 [Process ID of the script]

The process ID itself should look something like: 12345

Edit Report
Pub: 17 Mar 2025 00:37 UTC
Edit: 17 Mar 2025 02:41 UTC
Views: 153