我通過MacPorts安裝了PostgreSQL。但是,去/opt/local/lib/postgresql84/bin
我無法執行任何pg命令。有誰知道我做錯了什麼?PostgreSQL:找不到命令
3
A
回答
16
當你說「要去」時,聽起來好像你正在使用cd
命令切換到該目錄。喜歡的東西:
$ cd /opt/local/lib/postgresql84/bin
$ psql
psql: command not found
通常在Unix系統上,當前目錄是執行搜索路徑的不一部分。因此,無論使用./
明確地執行從當前目錄psql
:
$ cd /opt/local/lib/postgresql84/bin
$ ./psql
或目錄添加到您的PATH
:
$ export PATH=/opt/local/lib/postgresql84/bin:$PATH
$ psql
3
嘗試 「查找/ -name PSQL」
2
嘗試
whereis psql
1
我已經安裝了po stgres(Mac,The capitan SO)與dmg並且我也遇到了同樣的問題。我不得不通過brew來安裝psql。試試這個:
brew install postgres
這對我有效。
相關問題
- 1. Postgresql -bash:psql:找不到命令
- 2. 「找不到命令」
- 3. UNIX命令「找不到命令」錯誤
- 4. Linux的PowerShell命令找不到命令
- 5. django命令找不到命令模塊
- 6. rails 3找到命令不與postgresql數據庫工作
- 7. PostgreSQL的找不到文件名複製命令指定
- 8. Cygwin找不到「top」命令
- 9. 的cronjob:找不到命令
- 10. MinGW找不到OpenGL命令
- 11. -bash:pgrmname:找不到命令
- 12. bash:spec:找不到命令
- 13. 找不到Babel命令
- 14. 的MonoTouch:Three20 - 找不到命令
- 15. -bash:pm2:找不到命令
- 16. PHPDocumentor - 找不到Graphviz'dot'命令
- 17. Gemfile:找不到命令
- 18. bash找不到HTK命令
- 19. bash:mkvirtualenv:找不到命令
- 20. boxfuse:找不到命令
- 21. Heroku:bash:bundle:找不到命令
- 22. 寶石找不到命令
- 23. zsh:找不到命令:ls
- 24. 找不到命令「蜜蜂」
- 25. sudo:apt-get:找不到命令
- 26. 快遞找不到命令
- 27. 黃瓜 - 找不到命令
- 28. -bash:BBB:找不到命令
- 29. Sublime找不到javac命令
- 30. FFmpeg -bash:ffmpeg:找不到命令
謝謝BarsMonster。我在我的〜/ .bash_profile中放置了路徑 /opt/local/bin /opt/local/sbin /opt/local/lib/postgresql84/bin ,並修復了它。 不知道爲什麼psql沒有工作,當我直接去/ opt/local/lib/postgresql84/bin雖然... – Tian 2010-08-25 00:33:10
可能是因爲當前目錄不在您的「路徑」中。 – 2010-08-25 08:49:26