Centos7安裝Golang1.6,並配置vim環境

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

http://icsmile.com/2016/03/31/centos7_go1.6/

在CentOS7下安裝golang1.6版本,並進行vim高亮配置

安裝

  • 卸載之前的版本
 yum remove golang
  • 下載Golang1.6
 wget http://www.golangtc.com/static/go/1.6/go1.6.linux-amd64.tar.gz tar -zxvf  go1.6.linux-amd64.tar.gz
修改環境變數檔案和工作環境

由於個人喜好,我的工作目錄都在opt下,故設定golang的工作目錄為/opt/golang

 mkdir /opt/golang vim ~/.bash_profile export GOPATH=/opt/golang export GOROOT=/root/golang export PATH=$PATH:$GOROOT/bin
  • 重載環境變數
 source ~/.bash_profile
  • 確認版本
 go version #go version go1.6 linux/amd64

配置vim

  • 首先安裝Vundle
 git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
  • 配置.vimrc

以下是我的配置環境,僅供參考

 vim ~/.vimrc    set nocompatible              " be iMproved, required      filetype off                  " required      set rtp+=~/.vim/bundle/Vundle.vim      call vundle#begin()      Plugin 'gmarik/Vundle.vim'      Plugin 'fatih/vim-go'      call vundle#end()            " required      filetype plugin indent on    " required      syntax on
  • 安裝vim-go
 git clone https://github.com/fatih/vim-go.git ~/.vim/bundle/vim-go

安裝完成!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.