go windows 環境搭建
go windows 環境搭建
更多幹貨
概述
開發工具
-
GoLang / liteIDE
-
idea + go 外掛
-
go get 獲取第三方庫
-
使用gopm來獲取無法下載的包
-
go get -v github.com/gpmgo/gopm
-
安裝git
-
gopm get -g -v -u golang.org/x/tools/cmd/goimports
-
go build golang.org/x/tools/cmd/goimports 生成在執行命令目錄
-
go install golang.org/x/tools/cmd/goimports 會在gopath下bin中
-
-
go 命令
-
go build 編譯
-
go install 產生pkg檔案和可執行檔案
-
go run 直接編譯執行
-
安裝
go環境變數,自動新增
GOROOT:D:\go
E:\gopath: E:\gopath\Development
在path 中加入
%GOROOT%\bin;%GOPATH%\bin;
檢查go 安裝成功與否
go version
go env
檢視api
godoc -http=:8099
http://localhost:8099/
helloword
包結構
src/hello.go
// You can edit this code!
// Click here and start typing.
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
go run hello.go
go build hello.go
bee
go get github.com/beego/bee
go get github.com/astaxie/beego
在 $GOPATH/src 目錄下執行 bea create myapp
使用bee 工具編譯beego專案
在 $GOPATH/src 目錄下執行. 啟動專案
bee start myapp
相關文章
- Go語言環境搭建(Windows版本)2020GoWindows
- go grpc環境搭建GoRPC
- Flutter環境搭建(Windows)FlutterWindows
- Windows環境下的Nginx環境搭建WindowsNginx
- Windows 下GO語言開發環境搭建+LiteID配置WindowsGo開發環境
- go語言環境搭建Go
- 搭建go開發環境Go開發環境
- windows下搭建lisp環境WindowsLisp
- Windows 下搭建 lnmp 環境WindowsLNMP
- 搭建go環境並執行Go
- go語言grpc環境搭建GoRPC
- Windows下搭建ESP-IDF環境搭建Windows
- windows開發genieacs環境搭建Windows
- Flutter系列(三)——環境搭建(Windows)FlutterWindows
- Windows搭建Superset環境學習Windows
- React-Native環境搭建(windows)ReactWindows
- GOLang開發環境搭建(Windows)Golang開發環境Windows
- go 在 Windows 上環境變數GoWindows變數
- 在windows下配置Eclipse + go環境WindowsEclipseGo
- Linux/Go環境搭建, HelloWorld執行LinuxGo
- 搭建 go-micro 開發環境Go開發環境
- Go語言開發環境搭建Go開發環境
- windows下flutter2.2.3環境搭建WindowsFlutter
- Windows+Android+Cordova+ionic環境搭建WindowsAndroid
- Go基礎系列:2. 環境搭建Go
- Ubuntu18.04 搭建go編譯環境UbuntuGo編譯
- GO語言eclipse開發環境搭建GoEclipse開發環境
- Go Eclipse開發工具環境搭建(最新)GoEclipse
- 20240326 windows搭建k8s環境WindowsK8S
- Windows下Kafka2.8環境搭建教程WindowsKafka
- Windows上搭建Standalone模式的Spark環境Windows模式Spark
- Windows 下 Homestead 環境搭建遇到的坑Windows
- Windows核心程式設計(一)-環境搭建Windows程式設計
- Python3 環境搭建(Windows和Linux)PythonWindowsLinux
- 一、Windows 環境搭建問題彙總Windows
- Linux 下 Go 環境搭建以及 Gin 安裝LinuxGo
- aws 之 python 和 go 環境簡單搭建PythonGo
- Linux下搭建Go語言開發環境LinuxGo開發環境