GO Tool Pack Installation method

Source: Internet
Author: User
This is a created article in which the information may have evolved or changed.

Go install dependency packages typically go through four paths

1.github.com/

2.golang.org/

3.gopkg.in/

4.honnet.co/

For example, we can download the installation package via go get github.com/xxx.

After downloading, install the package via go install github.com/xxx

The installation package is downloaded to the $gopath/src file

Post-installation execution files in the $gopath/bin file

Common errors

When we execute go get golang.org/x/tools/cmd/goimports will error

Package golang.org/x/tools/cmd/goimports:unrecognized Import Path "Golang.org/x/tools/cmd/goimports"

This problem will appear in the higher version of Golang, the general solution is

# Create a folder

mkdir$gopath/src/golang.org/x/

# Go to Folder

cd$gopath/src/golang.org/x/

# Download Source code

git clone https://github.com/golang/tools.git

# installation

Go Install Golang.org/x/tools/cmd/goimports

Similarly, other packages that are under the golang.org/x/path are resolved

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.