I used this script
export LD_LIBRARY_PATH=/system/lib64:$LD_LIBRARY_PATH
rm -f panda3d.apk
python makepanda/makepanda.py --everything --target android --installer --threads 2 $@
if [ -f panda3d.apk ]; then
cp panda3d.apk /sdcard/panda3d.apk
xdg-open /sdcard/panda3d.apk
done
to build an apk and run it, and it installed it. When I run just the basic hello world program it throws an error: “ModuleNotFoundError: No module named ‘direct’”, so I guess it’s not installed into the system/termux python.