TStickers icon indicating copy to clipboard operation
TStickers copied to clipboard

Feature: Linux Script guide

Open pgwiz opened this issue 7 months ago • 0 comments

How to easily install for python 3.12.x tested and working

'''Create a script called tst-install.sh'''

Paste this.
#!/usr/bin/bash

echo "[*] Updating package lists..."
apt update && apt upgrade -y

echo "[*] Installing essential build tools..."
apt install -y cmake build-essential ninja-build

echo "[*] Installing required libraries via pkg..."
pkg install -y libjpeg-turbo freetype libpng

echo "[*] Installing Python packages..."
pip install rlottie-python==1.3.6
pip install tstickers

echo "[✓] All done! Ready to use tstickers."

then run

chmod +x tst-install.sh && ./tst-install.sh

OR

bash tst-install.sh

Done ✔️

pgwiz avatar Apr 30 '25 15:04 pgwiz