Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Installation termux

Avinash Reddy edited this page Apr 9, 2020 · 3 revisions

Installation on Android devices using Termux

First things first: Install Termux from Google Play or FDroid.

  • Open Termux (duh!) and update it's package repositories
apt update
apt upgrade -y
  • Install Python and Git
apt install -y python git

Do note that the python package includes pip and setuptools too!

  • Install packages required by userbot.
apt install -y curl wget git ndk-sysroot clang make nano python zlib libwebp libpng libjpeg-turbo
  • Set up the userbot repository on the device.
# Clone the userbot repo.
git clone --depth 1 https://github.com/AvinashReddy3108/PaperplaneRemix.git

# Move into the cloned repo.
cd PaperplaneRemix/

# Make your config file using the inbuilt sample.
cp sample_config.ini config.ini
  • Install required Python packages from PyPI.
pip install --upgrade -r requirements.txt
  • Configure the userbot's credentials using the config.ini file.
nano config.ini
  • Finally, run the userbot using
python -m userbot
Clone this wiki locally