13 lines
438 B
Bash
13 lines
438 B
Bash
python -m venv .venv # Create .venv
|
|
|
|
.venv/bin/pip install --upgrade pip # Upgrade pip
|
|
|
|
.venv/bin/pip install bottle # Micro Framework
|
|
.venv/bin/pip install gunicorn # WSGI Server Backend
|
|
.venv/bin/pip install beaker # Session & caching library
|
|
.venv/bin/pip install mako # Template library
|
|
|
|
.venv/bin/pip install mysql-connector # Database connector
|
|
.venv/bin/pip install bcrypt # Password hash
|
|
.venv/bin/pip install pyjwt[crypto] # JWT
|