mirror of
https://github.com/fsecada01/Pygentic-AI.git
synced 2025-06-20 13:46:03 +00:00
18 lines
304 B
Bash
Executable File
18 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
export TZ='America/New York'
|
|
|
|
apt-get update && apt-get upgrade -y
|
|
apt-get install openssh-client \
|
|
python3-dev \
|
|
python3-full \
|
|
python3-venv \
|
|
python3-pip \
|
|
git \
|
|
postgresql \
|
|
supervisor \
|
|
g++ \
|
|
gcc \
|
|
locales -y
|