我在使用自制软件安装postgresql 9.1.4时遇到错误。我已经尝试了所有我能想到的解决问题的方法,包括....
brew install --use-gcc postgresql
brew install --use-clang postgresql
brew install --use-llvm postgresql
CC=/usr/bin/gcc-4.2 brew install postgresql
export CC=/usr/bin/gcc-4.2 && brew install postgresql
brew install postgresql --32-bit
brew install postgresql --without-ossp-uuid
brew install postgresql --no-python
PYTHON=/usr/local/bin/python brew install postgresql
我注意到系统上已经安装了postgreqsl 9.0.4,但是我期望在那里发现的许多命令都丢失了,例如initdb
和pg_ctl
,所以我不想使用那个版本。
我怀疑我遇到的问题是由postgresql的系统版本中的库引起的,但我不确定如何测试它。
有什么想法?我在gist中发布了运行brew install postgresql
的详细输出。 https://gist.github.com/2998598