PostrgreSQL:" -bash:postgres:command not found"用自制软件安装后

时间:2016-01-26 22:04:29

标签: postgresql osx-elcapitan

尝试使用PostgreSQL开始学习django。

使用自制软件在Mac OSX El Capitan上安装PostgreSQL后,我看到了这些话:

To have launchd start postgresql at login:
  ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents
Then to load postgresql now:
  launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
Or, if you don't want/need launchctl, you can just run:
  postgres -D /usr/local/var/postgres    
==> Summary
  /usr/local/Cellar/postgresql/9.5.0: 3,113 files, 35.0M

但是当我输入它所说的确切内容时,我收到一个错误:

redacted_name:~ redacted$ postgres -D /usr/local/var/postgres
-bash: postgres: command not found

????

开头似乎甚至没有/usr/local/var/目录!

笏?

修改

有人投票赞成这个,并说它不是关于编程的?那么这个问题应该在哪里?当我搜索postgreSQL mac'在Stack Exchange上,大多数其他问题都在Stack Overflow上。

1 个答案:

答案 0 :(得分:1)

这就是我所需要的:

brew link postgresql

希望这有助于其他人!