2018.6.4更新
通過homebrew安裝Graphviz
vandeMacBook-Air:~ enniu$ ruby -version
vandeMacBook-Air:~ enniu$ brew install ruby@2.3
vandeMacBook-Air:~ enniu$ brew install Graphviz
vandeMacBook-Air:~ enniu$ brew list
homebrew方法
1十气、Homebrew官網(wǎng)
2赦颇、原理
通過 Homebrew 或者 Homebrew Cask 安裝的軟件都會(huì)集中在一個(gè)目錄下面帆锋,再由 Homebrew 將相關(guān)軟件軟鏈接到相關(guān)路徑炊甲。舉個(gè)例子足陨,如果當(dāng)我們?cè)L問系統(tǒng)中的 A 文件時(shí)颈抚,系統(tǒng)都會(huì)將訪問路徑導(dǎo)向 B 文件對(duì)應(yīng)的路徑叫乌,那么 A 文件就是 B 文件的軟鏈接柴罐,這也是 Homebrew 的原理。
參考:借助 Homebrew Cask憨奸,教你快速下載安裝 Mac App 新姿勢(shì)
3革屠、安裝步驟
3.1 安裝Xcode
xcode-select --install #完成 Xcode command line tools 安裝
3.2 安裝 Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
3.3 下載軟件
brew install 軟件名
其他命令
brew list
4、啟用postgresql
initdb /usr/local/var/postgres
#初始配置 PostgreSQL。若報(bào)錯(cuò)似芝,參考如下[Reinstalling PostgresSQL on Mac](http://www.tgreenidge.com/blog/installing-postgres)
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
# 啟動(dòng)PostgreSql那婉。因?yàn)槲丛O(shè)置自動(dòng)啟動(dòng),故每次都需要手動(dòng)開啟
$ createdb test -O enniu -E UTF-8 -e #用戶名為enniu党瓮,密碼默認(rèn)為postgres
$ psql -U enniu -d test 127.0.0.1 #連接數(shù)據(jù)庫(kù)详炬。在終端窗口使用此命令調(diào)出postgresql
CREATE TABLE test (id int, text VARCHAR(50)) #建表
\d #顯示數(shù)據(jù)表
官網(wǎng)下載方式
簡(jiǎn)單介紹:Mac 上安裝和使用PostgreSQL的方法
psql: 是PostgreSQL數(shù)據(jù)庫(kù)的命令行交互工具
pgAdmin: 是PostgreSQL數(shù)據(jù)庫(kù)的圖形化管理工具
Postgres.app includes many command line tools. If you want to use them, you must configure the $PATH variable.
If you are using bash (default shell on OS X), add the following line to ~/.bash_profile:
export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/9.5/bin
參考:
postgreSQL增加環(huán)境變量
轉(zhuǎn)載:(Mac)在bash和zsh配置環(huán)境變量path的幾種方法
查看psql的絕對(duì)路徑
$ which psql #結(jié)果為:/usr/local/bin/psql