How to install go language related tools
How to install go language related tools: 1. Download the go language tool package on the github platform; 2. Install the tool package by executing the [go install github.com/xxx] command.
The operating environment of this article: windows10 system, Go 1.11.2, thinkpad t480 computer.
The go tool package can be installed through the following four paths:
github.com/ golang.org/ gopkg.in/ honnet.co/
For example, we can download the installation package through go get github.com/xxx
After downloading, through go install github.com/xxx to install the package
The installation package will be downloaded to the $GOPATH/src file
The executable file after installation is in the $GOPATH/bin file
Common errors:
When we execute go get golang.org/x/tools/cmd/goimports, an error will be reported
package golang.org/x/tools/cmd/goimports: unrecognized import path "golang.org/x/tools/cmd/goimports"
This problem will appear in higher versions of golang. The general solution is
# 创建文件夹 mkdir$GOPATH/src/golang.org/x/ # 进入文件夹 cd$GOPATH/src/golang.org/x/ # 下载源码 git clone https://github.com/golang/tools.git # 安装 go install golang.org/x/tools/cmd/goimports
Similarly, other packages in the golang.org/x/ path can be solved
Related recommendations:golang tutorial
The above is the detailed content of How to install go language related tools. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Queue threading problem in Go crawler Colly explores the problem of using the Colly crawler library in Go language, developers often encounter problems with threads and request queues. �...

The library used for floating-point number operation in Go language introduces how to ensure the accuracy is...

Automatic deletion of Golang generic function type constraints in VSCode Users may encounter a strange problem when writing Golang code using VSCode. when...

Regarding the problem of custom structure tags in Goland When using Goland for Go language development, you often encounter some configuration problems. One of them is...

Which libraries in Go are developed by large companies or well-known open source projects? When programming in Go, developers often encounter some common needs, ...

The difference between string printing in Go language: The difference in the effect of using Println and string() functions is in Go...

How to implement background running, stopping and reloading functions in Golang? During the programming process, we often need to implement background operation and stop...

Go language slice index: Why does a single-element slice intercept from index 1 without an error? In Go language, slices are a flexible data structure that can refer to the bottom...
