pgAdmin 4 now available on PyPi - Mailing list pgadmin-hackers

From Dave Page
Subject pgAdmin 4 now available on PyPi
Date
Msg-id CA+OCxoztZ+fupJS_HHsdHtubcC8HBqOJe8Wmf7pCaw2tTZNa-Q@mail.gmail.com
Whole thread Raw
List pgadmin-hackers
Hi

Starting with v4.22 pgAdmin is available on PyPi (https://pypi.org/project/pgadmin4/). To install it, create a virtual environment as required, and then use pip to install. Note that pgAdmin will run in server mode, using system-wide paths so you may need to create them first:

$ sudo mkdir /var/lib/pgadmin
$ sudo mkdir /var/log/pgadmin
$ sudo chown $USER /var/lib/pgadmin
$ sudo chown $USER /var/log/pgadmin
$ python3 -m venv pgadmin4
$ source pgadmin4/bin/activate
(pgadmin4) $ pip install pgadmin4
...
(pgadmin4) $ pgadmin4
NOTE: Configuring authentication for SERVER mode.

Enter the email address and password to use for the initial pgAdmin user account:

Email address: user@domain.com
Password:
Retype password:
Starting pgAdmin 4. Please navigate to http://127.0.0.1:5050 in your browser.
 * Serving Flask app "pgadmin" (lazy loading)
 * Environment: production
   WARNING: Do not use the development server in a production environment.
   Use a production WSGI server instead.
 * Debug mode: off

Enjoy!

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

pgadmin-hackers by date:

Previous
From: Dave Page
Date:
Subject: pgAdmin 4 commit: Don't use virtualenv to create the venv on Windows.
Next
From: Dave Page
Date:
Subject: RM5576: Improve error messaging if the storage and log directoriescannot be created