天天看點

brew 無法安裝iterm2_MAC 安裝OhMyZsh問題記錄

某一天,在快樂的使用mac terminal時,突然跳出提示說我可以切換到zsh模式,WTF?官網給了一個比較詳盡的解釋https://support.apple.com/zh-cn/HT208050,以下是操作過程

1. Mac  Terminal自帶zsh,切換到zsh模式,但是界面不好看,怎麼搞一個酷炫的界面呢,繼續往下看

2. 抛棄Mac自帶的Terminal,安裝酷炫ITerm2,可以直接去官網下載下傳:iterm2.com/

3. 安裝美化工具Oh-my-zsh,GitHub項目位址為https://github.com/ohmybash/oh-my-bash,安裝方法有兩種,可以使用curl或wget,看自己環境或喜好

#via curlbash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)"#via wgetbash -c "$(wget https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh -O -)"
           

重點來了!衆所周知的原因:上面的位址無法通路!下面的位址親測可用!

#via curlsh -c "$(curl -fsSL https://gitee.com/shmhlsy/oh-my-zsh-install.sh/raw/master/install.sh)"#via wgetsh -c "$(wget -O- https://gitee.com/shmhlsy/oh-my-zsh-install.sh/raw/master/install.sh)"
           

源于國内版GitHub碼雲(對,馬爸爸笑了~!~),項目位址為https://gitee.com/mirrors/oh-my-zsh

4. 安裝PowerLine字型,powerline官網:powerline.readthedocs.io

安裝powerline的方式依然簡單,也隻需要一條指令:

pip install powerline-status --user
           

沒有安裝pip的同學可能會碰到zsh: command not found: pip,不怕使用以下指令進行安裝

brew install pip
           

5. 安裝PowerFonts,安裝字型庫需要首先将項目git clone至本地,然後執行源碼中的install.sh。

# git clonegit clone https://github.com/powerline/fonts.git --depth=1# cd to foldercd fonts# run install shell./install.sh
           

安裝好字型庫之後,我們來設定iTerm2的字型,具體的操作是iTerm2 -> Preferences -> Profiles -> Text,在Font區域選中Change Font,然後找到Meslo LG字型。有L、M、S可選,看個人喜好:

brew 無法安裝iterm2_MAC 安裝OhMyZsh問題記錄

6. 安裝配色方案,配色方案在使用VIM或Colorful Log時會變得非常有用,同時界面也不會一片黑綠一樣死闆,同樣使用git clone的方式下載下傳源碼進行安裝

cd ~/Desktop/OpenSourcegit clone https://github.com/altercation/solarizedcd solarized/iterm2-colors-solarized/open .
           

在打開的finder視窗中,輕按兩下Solarized Dark.itermcolors和Solarized Light.itermcolors即可安裝明暗兩種配色。

再次進入iTerm2 -> Preferences -> Profiles -> Colors -> Color Presets中根據個人喜好選擇這兩種配色中的一種即可。

7.其餘的安裝步驟請借鑒https://zhuanlan.zhihu.com/p/37195261