argos/docs/installation/postgresql.md
2023-12-14 17:32:27 +01:00

568 B

Installing PostgreSQL

If you intend to use argos with Postgresql, you can install it with the following commands:

pip install -e ".[postgresql]"

Here are a few steps for you to install postgresql on your system:

Debian

sudo apt install postgresql
sudo -u postgres createuser -P argos
sudo -u postgres createdb -O argos argos
sudo -u postgres psql -c "ALTER DATABASE argos SET TIMEZONE TO 'UTC';"

MacOS

brew install postgresql@14
brew services start postgresql@14
createuser argos
createdb argos -O argos