OS X 套件管理器安裝(Homebrew)

獲取 Homebrew

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

打開終端窗口, 粘貼以上腳本当纱。

腳本會解釋它的作用笋籽,然后在您的確認下執(zhí)行安裝峦睡。高級安裝選項請看 這里(需要10.5)峭判。

安裝過程記錄

1.輸入命令后會出現如下提示魁巩,回車繼續(xù)安裝徒役,按其他任意鍵退出

Last login: Thu Jul 28 16:39:52 on ttys000

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

==> This script will install:

/usr/local/bin/brew

/usr/local/Library/...

/usr/local/share/doc/homebrew

/usr/local/share/man/man1/brew.1

/usr/local/share/zsh/site-functions/_brew

/usr/local/etc/bash_completion.d/brew

==> The following directories will be made group writable:

/usr/local/.

/usr/local/bin

/usr/local/lib

==> The following directories will have their owner set to luomeng:

/usr/local/.

/usr/local/bin

/usr/local/lib

==> The following directories will have their group set to admin:

/usr/local/.

/usr/local/bin

/usr/local/lib

Press RETURN to continue or any other key to abort

2.回車后讓你輸入你的電腦的密碼寞蚌,密碼輸入的時候界面不會有任何顯示,輸完回車即可麸折,接下來就會在自動創(chuàng)建一些文件夾并下載相應的文件锡凝。安裝完成的時候,你可以通過訪問:https://git.io/brew-docs? https://git.io/brew-analytics ;一些相關的文檔

/usr/bin/sudo /bin/chmod g+rwx /usr/local/. /usr/local/bin /usr/local/lib

Password:

==> /usr/bin/sudo /usr/sbin/chown luomeng /usr/local/. /usr/local/bin /usr/local/lib

==> /usr/bin/sudo /usr/bin/chgrp admin /usr/local/. /usr/local/bin /usr/local/lib

==> /usr/bin/sudo /bin/mkdir -p /Users/luomeng/Library/Caches/Homebrew

==> /usr/bin/sudo /bin/chmod g+rwx /Users/luomeng/Library/Caches/Homebrew

==> /usr/bin/sudo /usr/sbin/chown luomeng /Users/luomeng/Library/Caches/Homebrew

==> Downloading and installing Homebrew...

remote: Counting objects: 530, done.

remote: Compressing objects: 100% (470/470), done.

remote: Total 530 (delta 32), reused 306 (delta 29), pack-reused 0

Receiving objects: 100% (530/530), 785.73 KiB | 142.00 KiB/s, done.

Resolving deltas: 100% (32/32), done.

From https://github.com/Homebrew/brew

* [new branch]? ? ? master? ? -> origin/master

HEAD is now at 97b6a30 test: add default Linux x86_64 bottle.

==> Tapping homebrew/core

Cloning into '/usr/local/Library/Taps/homebrew/homebrew-core'...

remote: Counting objects: 3717, done.

remote: Compressing objects: 100% (3604/3604), done.

remote: Total 3717 (delta 15), reused 1942 (delta 4), pack-reused 0

Receiving objects: 100% (3717/3717), 2.88 MiB | 278.00 KiB/s, done.

Resolving deltas: 100% (15/15), done.

Checking connectivity... done.

Tapped 3595 formulae (3,743 files, 9.0M)

==> Installation successful!

==> Next steps

Run `brew help` to get started

Further documentation: https://git.io/brew-docs

==> Homebrew has enabled anonymous aggregate user behaviour analytics

Read the analytics documentation (and how to opt-out) here:

https://git.io/brew-analytics

localhost:~ luomeng$

3.輸入brew help可以看所有的功能了垢啼,在此不做一一解釋了

localhost:~ luomeng$ brew help

Example usage:

brew search [TEXT|/REGEX/]

brew (info|home|options) [FORMULA...]

brew install FORMULA...

brew update

brew upgrade [FORMULA...]

brew uninstall FORMULA...

brew list [FORMULA...]

Troubleshooting:

brew config

brew doctor

brew install -vd FORMULA

Brewing:

brew create [URL [--no-fetch]]

brew edit [FORMULA...]

https://github.com/Homebrew/brew/blob/master/share/doc/homebrew/Formula-Cookbook.md

Further help:

man brew

brew help [COMMAND]

brew home

localhost:~ luomeng$

What Does Homebrew Do?

又提示缺少套件啦窜锯?別擔心,Homebrew 隨時守候膊夹。

$ brew install wget

Homebrew 會將套件安裝到獨立目錄,并將文件軟鏈接至 /usr/local 捌浩。

$ cd /usr/local

$ find Cellar

Cellar/wget/1.16.1

Cellar/wget/1.16.1/bin/wget

Cellar/wget/1.16.1/share/man/man1/wget.1

$ ls -l bin

bin/wget -> ../Cellar/wget/1.16.1/bin/wget

Homebrew 的所有文件均會被安裝到預定義目錄下放刨,所以您無需擔心 Homebrew 的安裝位置。

輕松創(chuàng)建您的 Homebrew 程式尸饺。

$ brew create https://foo.com/bar-1.0.tgz

Created /usr/local/Library/Formula/bar.rb

以 git进统、 ruby 為其筋骨,所以借助您的相關知識浪听,自由修改螟碎,并且可以簡單撤回您的調改或者合并上游更新。

$ brew edit wget # 使用 $EDITOR 編輯!

Homebrew 的程式都是簡單的 Ruby 腳本:

class Wget < Formula

homepage "https://www.gnu.org/software/wget/"

url "https://ftp.gnu.org/gnu/wget/wget-1.15.tar.gz"

sha256 "52126be8cf1bddd7536886e74c053ad7d0ed2aa89b4b630f76785bac21695fcd"

def install

system "./configure", "--prefix=#{prefix}"

system "make", "install"

end

Homebrew 使 OS X 更完美迹栓。使用 gem 來安裝 gems掉分、用 brew 來搞定那些依賴包。

原文鏈接:http://brew.sh/index_zh-cn.html

獲取 Homebrew

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

打開終端窗口, 粘貼以上腳本。

腳本會解釋它的作用酥郭,然后在您的確認下執(zhí)行安裝华坦。高級安裝選項請看 這里(需要10.5)。

安裝過程記錄

Last login: Thu Jul 28 16:39:52 on ttys000

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

==> This script will install:

/usr/local/bin/brew

/usr/local/Library/...

/usr/local/share/doc/homebrew

/usr/local/share/man/man1/brew.1

/usr/local/share/zsh/site-functions/_brew

/usr/local/etc/bash_completion.d/brew

==> The following directories will be made group writable:

/usr/local/.

/usr/local/bin

/usr/local/lib

==> The following directories will have their owner set to luomeng:

/usr/local/.

/usr/local/bin

/usr/local/lib

==> The following directories will have their group set to admin:

/usr/local/.

/usr/local/bin

/usr/local/lib

Press RETURN to continue or any other key to abort

file:///Users/luomeng/Library/Containers/com.tencent.qq/Data/Library/Application%20Support/QQ/Users/812610313/QQ/Temp.db/00D00EDB-EF24-4BEA-84C4-59F37A5B0CCA.png

What Does Homebrew Do?

又提示缺少套件啦不从?別擔心惜姐,Homebrew 隨時守候。

$ brew install wget

Homebrew 會將套件安裝到獨立目錄平夜,并將文件軟鏈接至 /usr/local 瑰煎。

$ cd /usr/local

$ find Cellar

Cellar/wget/1.16.1

Cellar/wget/1.16.1/bin/wget

Cellar/wget/1.16.1/share/man/man1/wget.1

$ ls -l bin

bin/wget -> ../Cellar/wget/1.16.1/bin/wget

Homebrew 的所有文件均會被安裝到預定義目錄下残黑,所以您無需擔心 Homebrew 的安裝位置。

輕松創(chuàng)建您的 Homebrew 程式条舔。

$ brew create https://foo.com/bar-1.0.tgz

Created /usr/local/Library/Formula/bar.rb

以 git、 ruby 為其筋骨倡勇,所以借助您的相關知識逞刷,自由修改,并且可以簡單撤回您的調改或者合并上游更新妻熊。

$ brew edit wget # 使用 $EDITOR 編輯!

Homebrew 的程式都是簡單的 Ruby 腳本:

class Wget < Formula

homepage "https://www.gnu.org/software/wget/"

url "https://ftp.gnu.org/gnu/wget/wget-1.15.tar.gz"

sha256 "52126be8cf1bddd7536886e74c053ad7d0ed2aa89b4b630f76785bac21695fcd"

def install

system "./configure", "--prefix=#{prefix}"

system "make", "install"

end

Homebrew 使 OS X 更完美夸浅。使用 gem 來安裝 gems、用 brew 來搞定那些依賴包扔役。

原文鏈接:http://brew.sh/index_zh-cn.html

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末帆喇,一起剝皮案震驚了整個濱河市,隨后出現的幾起案子亿胸,更是在濱河造成了極大的恐慌坯钦,老刑警劉巖,帶你破解...
    沈念sama閱讀 216,372評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件侈玄,死亡現場離奇詭異婉刀,居然都是意外死亡,警方通過查閱死者的電腦和手機序仙,發(fā)現死者居然都...
    沈念sama閱讀 92,368評論 3 392
  • 文/潘曉璐 我一進店門突颊,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人潘悼,你說我怎么就攤上這事律秃。” “怎么了治唤?”我有些...
    開封第一講書人閱讀 162,415評論 0 353
  • 文/不壞的土叔 我叫張陵棒动,是天一觀的道長。 經常有香客問我宾添,道長船惨,這世上最難降的妖魔是什么柜裸? 我笑而不...
    開封第一講書人閱讀 58,157評論 1 292
  • 正文 為了忘掉前任,我火速辦了婚禮掷漱,結果婚禮上粘室,老公的妹妹穿的比我還像新娘。我一直安慰自己卜范,他們只是感情好衔统,可當我...
    茶點故事閱讀 67,171評論 6 388
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著海雪,像睡著了一般锦爵。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上奥裸,一...
    開封第一講書人閱讀 51,125評論 1 297
  • 那天险掀,我揣著相機與錄音,去河邊找鬼湾宙。 笑死樟氢,一個胖子當著我的面吹牛,可吹牛的內容都是我干的侠鳄。 我是一名探鬼主播埠啃,決...
    沈念sama閱讀 40,028評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼伟恶!你這毒婦竟也來了碴开?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 38,887評論 0 274
  • 序言:老撾萬榮一對情侶失蹤博秫,失蹤者是張志新(化名)和其女友劉穎潦牛,沒想到半個月后,有當地人在樹林里發(fā)現了一具尸體挡育,經...
    沈念sama閱讀 45,310評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡巴碗,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 37,533評論 2 332
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現自己被綠了即寒。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片橡淆。...
    茶點故事閱讀 39,690評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖蒿叠,靈堂內的尸體忽然破棺而出明垢,到底是詐尸還是另有隱情蚣常,我是刑警寧澤市咽,帶...
    沈念sama閱讀 35,411評論 5 343
  • 正文 年R本政府宣布,位于F島的核電站抵蚊,受9級特大地震影響施绎,放射性物質發(fā)生泄漏溯革。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 41,004評論 3 325
  • 文/蒙蒙 一谷醉、第九天 我趴在偏房一處隱蔽的房頂上張望致稀。 院中可真熱鬧,春花似錦俱尼、人聲如沸抖单。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,659評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽矛绘。三九已至,卻和暖如春刃永,著一層夾襖步出監(jiān)牢的瞬間货矮,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,812評論 1 268
  • 我被黑心中介騙來泰國打工斯够, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留囚玫,地道東北人。 一個月前我還...
    沈念sama閱讀 47,693評論 2 368
  • 正文 我出身青樓读规,卻偏偏與公主長得像抓督,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子掖桦,可洞房花燭夜當晚...
    茶點故事閱讀 44,577評論 2 353

推薦閱讀更多精彩內容