# ide-go Installation Guide
# 1. Windows Installation Procedure
# 1.1 Download Files
Go to the Github Release Page (opens new window) and download the following two files:
vscode-ide-go-win32-x64.exe
ide-go-extensions.zip
# 1.2 Install ide-go
- Unzip the
vscode-ide-go-win32-x64.zip
file and run the installer inside. - The icon after installation will appear as follows:
# 1.3 Extension Installation
# List of Extension Files
After unzipping the ide-go-extensions.zip
, you will see the following extensions:
├── PKief.material-icon-theme-4.28.0.vsix
├── formulahendry.code-runner-0.12.0.vsix
├── golang.Go-0.39.1.vsix
1
2
3
2
3
# Install Extensions
- Launch ide-go.
- Go to Extensions.
- Choose
...
→Install From VSIX
. - Select all the extensions for installation.
# Set Icon Theme
- Choose
Material Icon Theme
. - Navigate to
Set File Icon Theme
. - Select the corresponding icon.
# 1.4 Use Developer Tools to Check for Errors
Choose Developer: Toggle Developer Tools
.
# 1.5 Code Testing
Ensure that you have the Go development environment installed.
Write and execute the following Go code:
package main
import (
"fmt"
)
func main() {
fmt.Print("hello, world\n")
}
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
Code execution result:
# 2. MacOS Installation Procedure
Please refer to the above Windows installation procedure.
# 3. ide-go Extension Introduction
# Go Support
- Go
Publisher: Go Team at Google
VS Marketplace Link (opens new window)
# Theme Support
- Material Icon Theme
Publisher: Philipp Kief
VS Marketplace Link (opens new window)