Transferred from: http://blog.csdn.net/love_se/article/details/7754274
Download Packcontrol Package Address: http://www.imjeff.cn/blog/62/
The first is to install go
Here are the detailed installation instructions, Http://code.google.com/p/golang-china/wiki/Install or Http://golang.org/doc/install
Below we install under window, Google has to provide win installation package, for beginners or very simple!
Https://code.google.com/p/go/downloads/list
Configuring Environment variables
(1). New variable name: GOBIN variable Value: C:\go\bin
(2). New variable name: Goarch Variable Value: 386
(3). New variable name: GOOS Variable Value: Windows
(4). New variable name: Goroot variable Value: C:\go
(5). Edit path at the end of the variable value of path plus%gobin%
After installing the go, we can build the development environment , here I use Sublime Text 2 + gosublime + Gocode. For those who do not know sublime Text 2, you can look at the official website: http://www.sublimetext.com/(generally a lightweight, handy tool)
1. Download Sublime Text 2, address as follows: http://www.sublimetext.com/
2. After the decompression, double-click Sublime_text, you can use sublime text 2. Crack: Open the Sublime_text.exe file with the Winhex hex editor, jump to the 000cbb70 line, change the line's 8A C3 to B0 and save.
3. Install the package Control, after opening Sublime Text 2, press the shortcut key Ctrl + ', open the Command window line, ' This button on the TAB key above, I just started not found, hehe. Enter the following and return to:
Import Urllib2,os; pf=‘Package Control.sublime-packageif not Os.path.exists (IPP) else None; Urllib2.install_ Opener (Urllib2.build_opener (URLLIB2. Proxyhandler ())); Open (Os.path.join (IPP,PF), "WB " http://sublime.wbond.net/ +pf.replace ( ' ', ' %20 ' please restart Sublime Text to finish installation
4. After restarting Sublime Text 2, it is possible to find a menu item in the Preferences menus under the package Control.
5. Now that the Gosublime plugin is installed, press and hold ctrl+shilft+p a dialog box will pop up.
Enter the Install Enter dialog box to pop up an installation package
If enter gosublime Select Gosublime Enter
Enter go build to select Enter (this is optional)
Done, Gosublime installed successfully.
After installation, you can install the sublime plugin. To install gosublime, sidebarenhancements, and go Build, after installing the plugin remember to restart sublime to take effect, ctrl+shift+p open the package controll input PCIP (" Package Control:install ").
6. Install Gocode below,
You can go to GitHub to download https://github.com/nsf/gocode.git (to install Google's git version management tool), configure the GIT environment variable:; C:\Program Files\git\bin; C:\Program Files\git\libexec\git-core;
Open the console and enter the following:
Go get-u github.com/nsf/gocode
Go Install Github.com/nsf/gocode
After the installation is complete, we can find an extra Gocode file in the Go/bin directory. (Be sure to put it in the bin directory)
7. Modify the Gosublime configuration: Under the Preferences menu, locate the package Settings, find the Gosublime, and then find Settings-default. Re-open the file, add the following configuration, and save:
Well, so far, the development environment has been built.
Open Sublime Text 2, create a new helloworld.go, and write the following code:
The time to witness the Go Code auto prompt
Enter a P
Carriage return (enter key)
The main method, the package is automatically generated for you.
Here is an example of printing:
Pressing the shortcut key below the Ctrl + B interface will appear as follows:
Enter Go build hello.go
Run, also press the shortcut key Ctrl + B below the interface will appear below, enter the Hello return.
Well, by now, the development environment has been set up, I hope you will also learn the language of go.
Sublime Text 2 to build the Go development environment (Windows)