go語言的安裝已經調試

來源:互聯網
上載者:User

go語言作為google的一個主推語言,最近很多人都在研究,也花了一點時間對他的安裝進行了測試,本人使用Sublime Text 2 + GoSublime + gocode

顧名思義首先是安裝Go,這裡有很詳細的安裝說明,http://code.google.com/p/golang-china/wiki/Install 或者http://golang.org/doc/install(golang.org自己去找hosts),官方已經支援Windows版本

下載解壓配置環境變數

“環境變數”(我的電腦->進階系統設定->環境變數),在系統變數的標籤下,依次建立編輯如下幾個索引值對:

(1). 建立 變數名:GOBIN 變數值 :c:\go\bin

(2). 建立 變數名:GOARCH 變數值:386

(3). 建立 變數名:GOOS 變數值:windows

(4). 建立 變數名: GOROOT 變數值:c:\go

(5). 編輯 Path 在Path的變數值的最後加上 %GOBIN%

1. 下載 Sublime Text 2,地址如下:http://www.sublimetext.com/

2. 解壓以後,雙擊 sublime_text,就可以使用 Sublime Text 2 了。

破解:

用 WinHex 編輯 sublime_text_backup.exe 檔案, 跳到 000CBB70  那一行,將該行的 8A   C3  修改為 B0 01 然後儲存

破解註冊成功

3. 安裝 Package Control,在開啟 Sublime Text 2以後,按下快速鍵 Ctrl + `,開啟命令窗行(具體在view——show Console),並斷行符號:

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’

4. 重啟Sublime Text 2後,就可以發現在 Preferences菜單下,多出一個功能表項目 Package Control。

5.現在安裝GoSublime外掛程式了,按住Ctrl+Shilft+p會彈出一個對話方塊輸入install斷行符號彈出一個安裝包的對話方塊

同上輸入GoSublime選擇GoSublime斷行符號

本機已經安裝所以沒有出現選項,輸入Go build選中斷行符號(這個屬於可選)

到此GoSublime安裝成功

6.下面安裝gocode,

首安裝 Git-1.7.11-preview20120710。

開啟控制台,輸入以下內容:

go get github.com/nsf/gocode

go install github.com/nsf/gocode

  go get github.com/DisposaBoy/MarGo

 go install github.com/DisposaBoy/MarGo

也可以去github下載https://github.com/nsf/gocode.git(要安裝google的git版本管理工具)

安裝完成後,我們可以在 go/bin 目錄下,發現多出了個 gocode 檔案。(一定要放在bin目錄下)

7. 修改GoSublime配置:在 Preferences菜單下,找到Package Settings,然後找到 GoSublime,再往下找到 Settings – Default。再開啟的檔案中,添加如下配置,並儲存:

"env": {"path":"c:/go/bin;" },

好了,到目前為止,開發環境搭建完成。

下面可以自由編程了。呵呵。

按下快速鍵 Ctrl + b 介面下方會出現如下介面:

好了,到現在,開發環境就搭建完畢了。

如下是內容我這邊沒有使用照樣可以使用:

sublime Text 2 編譯配置設定方法

tools->build system->new build system 建立一個設定檔 設定為

{

“cmd”: ["go", "run", "$file_name"],

“file_regex”: “^[ ]*File \”(…*?)\”, line ([0-9]*)”,

“working_dir”: “$file_path”,

“selector”: “source.go”

}

然後就可以用ctrl+b 編譯了

儲存

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.