authsquare/app/install.sh

11 lines
310 B
Bash
Raw Normal View History

2024-06-17 12:22:18 +07:00
sudo apt-get install -y python3-pip
pip install --upgrade pip
pip install bottle # Micro Framework
pip install gunicorn # WSGI Server Backend
pip install beaker # Session & caching library
pip install mako # Template library
2024-06-19 17:20:05 +07:00
pip install mysql-connector # Database
pip install bcrypt
pip install pyjwt[crypto]