“Installieren Sie PostgreSQL auf dem Mac” Code-Antworten

So öffnen Sie Postgresql im Mac

brew services start postgresqlpsql postgres
Helpful Hamster

Installieren Sie PostgreSQL auf dem Mac

brew install postgresql
Xenophobic Xenomorph

So öffnen Sie Postgresql im Mac

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Thoughtless Tarantula

Installieren Sie PSQL MAC


brew install postgresql
KostasX

Installieren Sie den Postgres Mac Client

You could use homebrew to install libpq.

brew install libpq

This would give you psql, pg_dump and a whole bunch of other client utilities without installing Postgres.

Unfortunately since it provides some of the same utilities as are included in the full postgresql package, brew installs it "keg-only" which means it isn't in the PATH by default. Homebrew will spit out some information on how to add it to your PATH after installation. In my case it was this:

echo 'export PATH="/usr/local/opt/libpq/bin:$PATH"' >> ~/.zshrc

Alternatively, you can create symlinks for the utilities you need. E.g.:

ln -s /usr/local/Cellar/libpq/10.3/bin/psql /usr/local/bin/psql
Black Bee

Installieren Sie PSQL MAC

make sure yu have homebrew installed and updated, then run
$ brew install libpq
$ brew link --force libpq ail
MitchAloha

Ähnliche Antworten wie “Installieren Sie PostgreSQL auf dem Mac”

Fragen ähnlich wie “Installieren Sie PostgreSQL auf dem Mac”

Weitere verwandte Antworten zu “Installieren Sie PostgreSQL auf dem Mac” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen