标签:修改 /etc/ ref 系统选择 etc 指定 编译 /etc 空间
export GOROOT="/usr/local/bin/go" export PATH="$PATH:$GOROOT/bin"
export GOPATH="~/文档/source_code/src/go/beego"
?首先到github(https://github.com/VundleVim/Vundle.vim)上面下载vundle插件管理器,解压后,将解压的文件夹改名为Vundle.vim。?在"~/"下新建文件夹".vim",然后再.vim中新建文件夹bundle , 并将上面是Vundle.vim移动到该文件夹下面,具体样子是这样("~/.vim/bundle/Vundle.vim")。?到github(https://github.com/fatih/vim-go )。下载插件vim-go , 将下载的压缩包解压,重命名为vim-go,将该文件夹移动到Vundle下面,具体样子为(~/.vim/bundle/vim-go)。?修改配置"~/.vimrc"该配置文件,再该文件中添加(该脚本来自于github上关于vundle的README):
set nocompatible " be iMproved, required filetype off " required set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin ‘VundleVim/Vundle.vim‘ Plugin ‘tpope/vim-fugitive‘ Plugin ‘git://git.wincent.com/command-t.git‘ Plugin ‘file:///home/gmarik/path/to/plugin‘ Plugin ‘rstacruz/sparkup‘, {‘rtp‘: ‘vim/‘} Plugin ‘fatih/vim-go‘ call vundle#end() " required filetype plugin indent on " required
?到github上下载go tools(https://github.com/golang/tools ).解压该文件夹,并将该文件夹重新命名为tools,其实这里面都是相应工具的源代码.?再在golang 的安装路径下的src文件夹下"/usr/local/bin/go/src" 新建gitbub.com文件夹和golang.org文件夹。?然后在golang.org文件夹下面新建文件夹x,接着将下载的go开发工具的文件夹(tools)移动到x里面。
?然后跳出到文件夹src下,执行命令:
go get golang.org/x/tools/(工具链文件夹名称)
完成以上操作后就可以在golang安装路径的bin"/usr/local/bin/go/bin"里面看到可执行的工具链。什么godoc gunu 等开发环境工具。
标签:修改 /etc/ ref 系统选择 etc 指定 编译 /etc 空间
原文地址:https://www.cnblogs.com/big-devil/p/9161529.html