Skip to content

Installation

nton7 edited this page Dec 21, 2021 · 16 revisions

Supported Platforms

  • OSX 64 bit
  • Linux 32/64 bit
  • Windows 32/64 bit
  • ARM 64 bit

Supported PostgreSQL versions:

  • 9.1-9.6
  • 10.x

Older versions (< 9) are not supported, however they might still work.

Github Releases

Pgweb binaries and source code for each version is distributed via Github Releases

Docker

Download an official Pgweb image:

docker pull sosedoff/pgweb

Mac

Install latest Pgweb version with Homebrew:

brew update
brew install pgweb

Linux

Download and install Pgweb manually:

curl -s https://api.github.com/repos/sosedoff/pgweb/releases/latest \
  | grep linux_amd64.zip \
  | grep download \
  | cut -d '"' -f 4 \
  | wget -qi - \
  && unzip pgweb_linux_amd64.zip \
  && rm pgweb_linux_amd64.zip \
  && mv pgweb_linux_amd64 /usr/local/bin/pgweb

Windows

There's no automated way to install Pgweb on Windows. You should download the ZIP archive for your OS: pgweb_windows_amd64.exe.zip then unpack it and move to applications folder.

Clone this wiki locally