You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Environment preparation for Kitex development"
8
8
---
9
9
10
-
Kitex, as a Golang microservice RPC framework, requires the following environment preparation: a **language environment** and **code generation tools**.
10
+
Kitex, as a Go microservice RPC framework, requires the following environment preparation: a **language environment** and **code generation tools**.
11
11
12
12
> **Note: Be sure to complete this section**
13
13
14
-
## Golang
14
+
## Go
15
15
16
16
**Go** (also known as **Golang**) is a statically typed, compiled, concurrent programming language developed by Google.
17
17
18
-
- Refer to [Golang Installation](https://go.dev/doc/install) for the environment setup of the Go language.
19
-
- It is recommended to use the latest version of Golang. We ensure compatibility with the latest three official versions (currently >= **v1.17**).
20
-
- Make sure to enable go mod support (enabled by default in Golang >= 1.15).
18
+
- Refer to [Go Installation](https://go.dev/doc/install) for the environment setup of the Go language.
19
+
- It is recommended to use the latest version of Go. We ensure compatibility with the latest three official versions (currently >= **v1.17**).
20
+
- Make sure to enable go mod support (enabled by default in Go >= 1.15).
21
21
- For Windows environment, kitex version >= v0.5.2 is required.
22
22
23
23
After completing the installation, open your terminal and enter `go version`. If the output displays the Go version and system architecture information correctly, it means the installation was successful. For example:
0 commit comments