- 下载和安装Go
- 如果是下载了MSI,直接默认安装,一直下一步下一步,直到完成
- 配置:我安装的时候不需要配置系统变量的,安装的时候已经修改了;如果环境变量里没有;C:\Go\bin,就把它添加上去(注意有个分号)
- 安装完毕以后,下载sublime 2: http://www.sublimetext.com/2
- 打开sublime,按 ctrl + ` ,会弹出个命令行,把以下这段内容复制进去,
import urllib2,os,hashlib; h = '7183a2d3e96f11eeadd761d777e62404' + 'e330c659d4bb41d3bdf022e94cab3cd0'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler()) ); by = urllib2.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), 'wb' ).write(by) if dh == h else None; print('Error validating download (got %s instead of %s), please try manual install' % (dh, h) if dh != h else 'Please restart Sublime Text to finish installation')
按回车;
- 然后重启sublime。
- 下载:Package Control.sublime-package:https://sublime.wbond.net/Package%20Control.sublime-package
- 把下载的文件放到Sublime Text 2\Packages\Package Control 里
- tools->build system->new build system ,插入以下内内容
{ "cmd": ["go", "run", "$file_name"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "working_dir": "$file_path", "selector": "source.go" }
- 保存.
- 重启sublime,新建一个test.go,写入以下代码
package main import "fmt" func main() { fmt.Printf("hello, world\n") }
- ctrl + b,编译。
- ok
有疑问加站长微信联系(非本文作者)