From 1e742384561c2326903d83e8a5981b5a30e8b807 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Fri, 10 Jan 2025 15:27:09 +0700 Subject: [PATCH] Need install requests for Recaptcha --- install.sh | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/install.sh b/install.sh index a8b19a5..0a9077e 100644 --- a/install.sh +++ b/install.sh @@ -1,12 +1,13 @@ -python3 -m venv .venv # Create .venv +python3 -m venv .venv # Create .venv -.venv/bin/pip3 install --upgrade pip # Upgrade pip +.venv/bin/pip3 install --upgrade pip # Upgrade pip -.venv/bin/pip3 install bottle # Micro Framework -.venv/bin/pip3 install gunicorn # WSGI Server Backend -.venv/bin/pip3 install beaker # Session & caching library -.venv/bin/pip3 install mako # Template library +.venv/bin/pip3 install bottle # Micro Framework +.venv/bin/pip3 install gunicorn # WSGI Server Backend +.venv/bin/pip3 install beaker # Session & caching library +.venv/bin/pip3 install mako # Template library -.venv/bin/pip3 install mysql-connector # Database connector -.venv/bin/pip3 install bcrypt # Password hash -.venv/bin/pip3 install pyjwt[crypto] # JWT +.venv/bin/pip3 install mysql-connector # Database connector +.venv/bin/pip3 install bcrypt # Password hash +.venv/bin/pip3 install pyjwt[crypto] # JWT +.venv/bin/pip3 install requests # For HTTP Request (Recaptcha need a POST HTTP requests)