Add postgres dependencies for postgres.

This commit is contained in:
David Mc Ken 2022-12-08 21:48:29 -04:00
parent b5661b61a0
commit 4952f2de06

View File

@ -14,6 +14,11 @@ dnf install python37 python3-devel python3-pip
```bash ```bash
dnf install mariadb-devel mariadb-common openldap-devel xmlsec1-devel xmlsec1-openssl libtool-ltdl-devel dnf install mariadb-devel mariadb-common openldap-devel xmlsec1-devel xmlsec1-openssl libtool-ltdl-devel
``` ```
**Install Postgres dependencies**
```bash
$ sudo yum install postgresql-libs
$ pip3 install psycopg2
```
**Install Development tools** **Install Development tools**
```bash ```bash
dnf install gcc gc make dnf install gcc gc make
@ -27,6 +32,7 @@ pip3.7 install -U pip
pip install -U virtualenv pip install -U virtualenv
``` ```
**Install Yarn for building NodeJS asset files:** **Install Yarn for building NodeJS asset files:**
```bash ```bash
dnf install npm dnf install npm