Files
singular-particular-space/ToolsnToys/Meshagora/install_termux.sh
JL Kruger 5422131782 Initial commit — Singular Particular Space v1
Homepage (site/index.html): integration-v14 promoted, Writings section
integrated with 33 pieces clustered by type (stories/essays/miscellany),
Writings welcome lightbox, content frame at 98% opacity.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-27 12:09:22 +02:00

27 lines
718 B
Bash

#!/data/data/com.termux/files/usr/bin/bash
# Meshagora — Termux dependency installer
# Run once before first use: bash install_termux.sh
set -e
echo "========================================"
echo "Meshagora — Termux Setup"
echo "========================================"
echo ""
echo "[1/2] Installing system packages..."
pkg install -y python net-tools libjpeg-turbo libpng
echo ""
echo "[2/2] Installing Python packages..."
pip install flask "qrcode[pil]"
echo ""
echo "========================================"
echo "Setup complete."
echo ""
echo "Before starting the server:"
echo " 1. Enable Android mobile hotspot"
echo " 2. Run: python3 meshagora.py"
echo "========================================"