Start to implementing venv

This commit is contained in:
Dita Aji Pratama 2024-08-09 15:40:04 +07:00
parent d7e3939949
commit 3a2739dcf1

View File

@ -1,6 +1,12 @@
sudo apt-get install -y python3-pip python3 -m venv .venv # Create .venv
pip install --upgrade pip
pip install bottle # Micro Framework .venv/bin/pip3 install --upgrade pip # Upgrade pip
pip install gunicorn # WSGI Server Backend
pip install beaker # Session & caching library .venv/bin/pip3 install bottle # Micro Framework
pip install mako # Template library .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