我是靠谱客的博主 如意树叶,最近开发中收集的这篇文章主要介绍Centos7安装Golang1.6,并配置vim环境,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

安装完成!

最后

以上就是如意树叶为你收集整理的Centos7安装Golang1.6,并配置vim环境的全部内容,希望文章能够帮你解决Centos7安装Golang1.6,并配置vim环境所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部