這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。
- 下載和安裝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 mainimport "fmt"func main() { fmt.Printf("hello, world\n")}
- ctrl + b,編譯。
- ok