You are not logged in.
I personally use conda environments for almost everything (R, python and others), included plenty of compiled software (c/c++, etc), but for databases isn't the best choice, and in this case, pip is well supported.
Last edited by matrs (2022-05-11 02:23:57)
Offline
$ 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
I like this solution as it's safer to run it under a regular user. It worked on Manjaro.
Offline
For what it's worth, I'm switching to `docker-compose` for pgAdmin, since it's pretty easy to add to my existing work configuration:
https://www.pgadmin.org/docs/pgadmin4/l … yment.html
Compose code in original post
Ended up going the same route, thanks!
Offline