↧
Answer by greensuisse for How to install psql without Postgres?
If you don't want to install anything, just download the package https://www.enterprisedb.com/download-postgresql-binaries Then run unpack and run ./bin/psql No installation. The package also contains...
View ArticleAnswer by Steve Bennett for How to install psql without Postgres?
Oh, yes: $ sudo apt-get install -y postgresql-client $ psql --version psql (PostgreSQL) 9.5.12
View ArticleHow to install psql without Postgres?
I need the psql command line tools, but I don't need the actual Postgres RDBMS. This is to work with a package which supports a psql interface. Is it possible to install just psql? (Ubuntu 16.04)
View ArticleAnswer by Mexican Jerboa for How to install psql without Postgres?
psql is part of the client. To install the client:Debian/Ubuntu:$ sudo apt install postgresql-clientRedHat family:$ sudo yum install -y postgresqlor with dnf package manager (RHEL 8+, Fedora):$ sudo...
View Article