Windows下搭建go语言开发环境 以及 开发IDE (附下载链接)
go1.2.windows-386.msi : http://download.csdn.net/detail/shuideyidi/7718563
go1.2.1.windows-amd64.msi: http://download.csdn.net/detail/shuideyidi/7719735
go1.2.1.darwin-amd64-osx10.8.pkg:http://download.csdn.net/detail/shuideyidi/7719779
go1.2.1.linux-amd64.tar.gz:http://download.csdn.net/detail/shuideyidi/7719867
go1.2.1.linux-386.tar.gz: http://download.csdn.net/detail/shuideyidi/7723441
(1). 新建 变量名:GOBIN 变量值 :c:\go\bin
(2). 新建 变量名:GOARCH 变量值:386
(3). 新建 变量名:GOOS 变量值:windows
(4). 新建 变量名: GOROOT 变量值:c:\go
import "fmt"
func main(){
fmt.Printf("Hello Word!\n");
}
fmt.Printf("Hello Word!\n");
}
或者
Website
- Source code https://github.com/visualfc/liteide
- Binary downloads http://sourceforge.net/projects/liteide/files
- Google group https://groups.google.com/group/liteide-dev
- Support LiteIDE http://visualfc.github.com/support
- How to Install https://github.com/visualfc/liteide/blob/master/liteidex/deploy/welcome/en/install.md
- Changes https://github.com/visualfc/liteide/blob/master/liteidex/deploy/welcome/en/changes.md
# native compiler windows 386
GOROOT=D:\go
#GOBIN=
GOARCH=386
GOOS=windows
CGO_ENABLED=1
PATH=c:\mingw32\bin;D:\GO\bin;%PATH%
LITEIDE_GDB=gdb
LITEIDE_MAKE=mingw32-make
LITEIDE_TERM=%COMSPEC%
LITEIDE_TERMARGS=
LITEIDE_EXEC=%COMSPEC%
LITEIDE_EXECOPT=/C
原本的:GOROOT=c:\go 要修改成当前Go的安装路径,修改完直接保存即可。
点击菜单项中的 "Window"->"Preferences"->在左边的列表项中选择"Go",然后就可以在右边配置Go语言的路径以及环境了(如图配置即可,其中GOOS:表示你的系统,由于是在Windows下开发,所以选择Windows。GOARCH:表示的是你电脑的CPU类型。作者本人的是i386,所以选择386)。
百度经验中的:基于Eclipse的Go语言可视化开发环境
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'
注意:Sublime Text3:
import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。