這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。
go下載地址:
http://code.google.com/p/go/downloads/list
go官方安裝地址:
http://golang.org/doc/install
另外收集一些關於go的地址:
Go官方網站 http://golang.org/
Go中文官網 http://golang-china.org/
中文論壇(測試中…) http://bbs.golang-china.org/
中文使用者討論群組(郵件) https://groups.google.com/group/golang-china/
中文翻譯(SVN) http://code.google.com/p/golang-china/
GitHub與Google Code同步(GIT) http://github.com/border/golang-china
Eclipse線上安裝外掛程式地址:
http://goclipse.googlecode.com/svn/trunk/goclipse-update-site/
不過Sublime Text 2也是一把神器.
安裝(系統ubt12.10):
sudo add-apt-repository ppa:webupd8team/sublime-text-2 sudo apt-get update sudo add-apt-repository ppa:webupd8team/sublime-text-2 sudo apt-get install sublime-text-2-beta sudo apt-get install bison ed gawk gcc libc6-dev make -y sudo apt-get install python-setuptools python-dev build-essential -y hg clone -r release https://go.googlecode.com/hg/ go sudo apt-get install mercurial -y hg clone -r release https://go.googlecode.com/hg/ go echo "export GOROOT=$HOME/go" >> ~/.bashrc echo "export PATH=$PATH:$GOROOT/bin" >> ~/.bashrc source ~/.bashrc
接下來遇到一點小問題:
smp@smp:~$ 8g -v8g: command not found
但輸入go godoc命令是可以的,懷疑是環境變數的問題。如此便找到8g目錄
smp@smp:~/go/pkg/tool/linux_386$ find ~/go -name 8g/home/smp/go/.hg/store/data/src/cmd/8g/home/smp/go/pkg/tool/linux_386/8g/home/smp/go/src/cmd/8g
於是修改環境變數檔案.bashrc如下:
export GOROOT=$HOME/goexport PATH=$PATH:$GOROOT/bin:$GOROOT/pkg/tool/linux_386/
個人喜歡sublime 編輯器,安裝gosublime如下:
ctrl+` 開啟命令列,執行如下代碼
import urllib2,os; 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())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print 'Please restart Sublime Text to finish installation'
安裝完成會提示你重啟軟體,之後,你就可以發現在 Preferences 這個菜單下出現了功能表項目 Package Control
要安裝 gosublime 外掛程式,按住 Ctrl+Shift+p 會彈出一個會話框,在其中輸入"install"後斷行符號
然後 輸入"gosublime",選中並斷行符號,
然後輸入"go build",
修改GoSublime配置:在 Preferences菜單下,找到Package Settings,然後找到 GoSublime,再往下找到 Settings - Default。再開啟的檔案中,添加如下配置
"env": { "path":"/home/smp/go/bin" #這個路徑根據自己的修改 },
安裝完之後,建立檔案,可以在tools選擇build system 中選擇go
建立helloword
package mainimport "fmt"func main() { fmt.Println("hello")}
運行結果如下:
smp@smp:~$ go run /tmp/test.go hello
還可一使用sublime ctrl+b 直接執行go shell