1 前言
先前条件:
sublime text3:下载地址:http://www.sublimetext.com/3
golang:下载地址:https://golang.google.cn/dl/
如果sublime text3没有安装control package,请使用以下方法安装
ctrl + 、(1的左侧符号)
import urllib.request,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)
2 步骤
2.1 Ctrl+Shift+P 打开控制
2.2 等待状态栏加载资源结束,输入gosublime,你会发现没有此插件,此时输入golang,会出现golang build,提示是官方插件。
2.3 点击golang build安装即可
2.4 安装完,配置信息
{ "PATH": "C:/Go/bin", "GOPATH": "D:/GoWorkspace" }
说明:如果未配置,可能提醒gopath不存在,默认是在C://user/用户名/go 文件夹下。此时只需要把gopath在系统环境变量中改为go工作目录即可。用cmd直接使用go env可以查看环境变量。
3 测试
在工作目录下写一个hello.go文件
4 参考
1.http://www.sublimetext.com/3
2.https://packagecontrol.io/installation
6.http://www.runoob.com/go/go-environment.html