Installing PostgreSQL on Mac
Step 1: Use Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"Step 2: Install PostgreSQL
brew install postgresqlStep 3: Start PostgreSQL
brew services start postgresqlStep 4: Verify Installation
brew services listLast updated