Install n8n on Android (Quick Guide)
Requirements
Android phone (2GB+ RAM recommended)
Termux (install from F-Droid)
Internet connection
1. Install Termux & Packages
Open Termux and run:
bashCopyEdit
pkg update && pkg upgrade -y
pkg install proot-distro curl wget git -y
2. Install Debian
bashCopyEdit
proot-distro install debian
proot-distro login debian
3. Install Node.js
Inside Debian:
bashCopyEdit
apt update && apt upgrade -y
apt install curl build-essential -y
curl -fsSL https://deb.nodesource.com/setup_lts.x | bash -
apt install nodejs -y
Check:
bashCopyEdit
node -v
npm -v
4. Install n8n
bashCopyEdit
npm install -g n8n
5. Run n8n
bashCopyEdit
n8n start --tunnel
You’ll get a public link like:
arduino
CopyEdit
Open it in your browser.
✅ Done!
You now have n8n running on your Android device.
