windows 下的 eclipse安裝goclipse 配置golang開發環境

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

1. 下載goclipse eclipse plugins

    http://goclipse.googlecode.com/svn/trunk/goclipse-update-site/ (建議使用proxy下載,除非你能直接存取;))

安裝完外掛程式後,重啟可以看到eclipse的右上方有個golang logo , 地鼠表徵圖:

2. 下載golang,調試tools

  下載Golang Windows 版本當前使用 go1.3.3.windows-386.zip :https://storage.googleapis.com/golang/go1.3.3.windows-386.zip

  使用proxy 訪問網站取得最新版本 : https://golang.org/dl/

  下載liteidex24.3.windows.7z : https://github.com/visualfc/liteide#website

   主要是用到liteide裡面的gdb (用於調試GO程式) ,和 gocode(給ecplise增加代碼自動提示),當然也可以使用 liteIDE開發GO APP

golang1.3.3-windows-386 已經放到百度-網盤,提供下載:http://pan.baidu.com/s/1jGuu8eU

檔案校正碼為:

SHA1 HASH : ba99083b22e0b22b560bb2d28b9b99b405d01b6b
MD5 HASH : 17d08e9801f239680b21b42c94c877ae

3. 配置參數

  解壓go1.3.3.windows-386.zip到目錄 如:E:\go

  解壓liteidex到目錄,如

   配置 golang 環境變數

     GOROOT = E:\go

     Path 增加 %GOROOT%\bin;

   命令列輸入go version 查看go版本:

  配置LiteIDE golang環境 :

  配置eclipse Go Preferences :

 

Debugger調速器選擇:E:\ProgramFiles\liteide\bin\gdb.exe (在 LiteIDE下)

Gocode代碼提示配置:

安裝完goclipse後,gocode 根據WINDOWS版本選擇,

如 %eclipse_home%\plugins\com.googlecode.goclipse.gocode_0.7.6.v450\tools\windows_386\gocode.exe

配置完畢eclipse建立 Go project :

demo.go

package main

import (
    "fmt"
    "io/ioutil"
    "net/http"
)

func main() {
    url := "http://www.baidu.com"
    resp, _ := GetByProxy(url)
    fmt.Println(resp)
    defer resp.Body.Close()
    body, _ := ioutil.ReadAll(resp.Body)
    fmt.Println(string(body))
}

// http get by proxy
func GetByProxy(url_addr string) (*http.Response, error) {
    request, err := http.NewRequest("GET", url_addr, nil)
    if err != nil {
        return nil, err
    }
    return http.DefaultClient.Do(request)
}



  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.