安裝home-brew
/usr/bin/ruby -e "$(curl -fssl "
替換home-brew
# 替換brew.git:
$ cd "$(brew --repo)"
# 中國科大:
$ git remote set-url origin
# 清華大學:
$ git remote set-url origin
# 替換homebrew-core.git:
$ cd "$(brew --repo)/library/taps/homebrew/homebrew-core"
# 中國科大:
$ git remote set-url origin
# 清華大學:
$ git remote set-url origin
# 替換homebrew-bottles:
# 中國科大:
$ echo 'export homebrew_bottle_domain=' >> ~/.bash_profile
$ source ~/.bash_profile
# 清華大學:
$ echo 'export homebrew_bottle_domain=' >> ~/.bash_profile
$ source ~/.bash_profile
# 應用生效:
$ brew update
安裝python3
brew search python3 搜尋
brew install python3
安裝pip3
curl | python3
pip --version
安裝virtualenv
sudo pip install virtualenv
vi ~/.bash_profile
將一下內容放入檔案最後
export workon_home=$home/.virtualenvs
執行source ~/.bash_profile
git
brew install git
永久記住密碼
git config --global user.name "wenbo"
git config --global user.email "[email protected]"
mysql
brew install mysql
redis
brew install redis
mac 下開發golang 配置
1 安裝golang 見附件 2 預設安裝在 usr local go 目錄下 3 配置環境變數 加入環境變數配置 export goroot usr local go export gopath users shaoyu desktop test1 hntv ftplog ecs 執行 sourc...
Mac下vim開發python程式的配置
參考部落格 1 語法高亮,自動縮排,對齊 linux下通用 進入家目錄 cd 建立乙個名為 vimrc 的配置檔案 vim vimrc 使用vim向該配置檔案填入一下內容 記得刪除中文 syntax on 語法高亮 set number 顯示行號 set tabstop 4 設定tab為四個空格 s...
Mac下golang開發環境配置
go語言在開發效率和執行效率中的優勢讓很多人青睞,所以有傾向打算轉向go語言的開發。下面介紹在mac os x中golang的開發環境配置。1.安裝brew brew是乙個mac下的由ruby開發的包管理系統,其官網是你只要在你的終端中執行 ruby e curl fssl便可將其安裝完成。安裝完之...