Table of Contents
Some common sense
Home Common Problem Are there any dependent packages in Go language?

Are there any dependent packages in Go language?

Apr 17, 2023 pm 04:14 PM
go language golang programming

There are dependent packages in the Go language. The methods for installing dependent packages are: 1. Use the "go get" command to install the dependent packages; 2. Turn on "go mod", and then use "" in the project directory go get" to pull the package; 3. Manually download the dependent package in github and put it in the corresponding directory; 4. Copy the corresponding package under "GOPATH/pkg/mod"; 5. Put the code directly into the project, and then use " go tidy" can automatically organize package dependencies.

Are there any dependent packages in Go language?

Operating system for this tutorial: Windows 10 system, go1.20 version, Dell G3 computer.

There are dependent packages in the Go language.

Although go now has a relatively easy-to-use go mod package management tool. However, due to some indescribable reasons, when installing dependencies There are still many problems for novices, let’s take a look at how to solve them?

Are there any dependent packages in Go language?

1. Go get

from Chapter 1 One day when you come into contact with the package dependencies of go, your teacher or the information you read will tell you: directly go get.

This is the most original installation method, which can solve most of the problems. Package dependency issues.

But not 100% of them can be installed successfully. For example, the package in the screenshot above: golang.org/x/crypto/ssh.

Directly go get, the golang.org URL may not be accessible due to indescribable reasons, and the package cannot be installed successfully.

2. Configure GOPROXY

go mod is a newly added feature of go 1.11.

So as long as the go version is greater than 1.11, it comes with go mod package management.

This is a good thing, if go mod is enabled.

go mod is initialized in the project, then use go in the project directory get will automatically use go mod to pull the package and organize it into the go.mod file.

But the source used by default is from abroad, so installing dependent packages is generally Very slow, or unable to succeed.

So you need to set up their proxy to let them go out from the domestic server, so that the speed and stability will be better.

If you are using goland You can command, to call up the preferences and set the proxy in it:

Are there any dependent packages in Go language?

Recommended proxy to https://goproxy.cn, Qiniu Cloud Home, I have been using it, it is very stable.

After modification, remember to reopen the terminal!

If you are using other IDE or command line, how to set it up on Baidu yourself? acting.

After the setting is completed, use go env to see the environment variables currently used by go, which can be used to check whether the configuration is OK.

3. Use github

If the installation cannot be successful after the above two steps, you have to use abnormal means to install dependencies.

Package reference

First you need to understand how go local packages are stored and referenced.

  • If it is a traditional go get downloaded dependency package, it will be stored under GOPATH/src/domain name/package name.
  • If you use go mod, the downloaded dependency package will be stored under GOPATH/pkg/mod/domain name/package name@version number.

So you can manually download the package and put it in the corresponding directory.

Manually download the package

It is not completely inaccessible to GitHub in China, but it may be slower or often unable to be opened. You can try your luck at this time.

Official packages can be found under this warehouse: github.com/golang

How to There will be a description in the README.md of each package installed:

The easiest way to install is to run go get -u http://golang.org/x/net. You can also manually git clone the repository to $GOPATH/src/http://golang.org/x/net.

Most of the dependent packages can be found in github.

4. Use connections

Follow the idea of ​​the previous solution. Not everyone cannot surf the Internet scientifically. You can seek friends around you who can surf the Internet scientifically to help you download. Package for you.

Then copy the corresponding package below GOPATH/pkg/mod.

5. Use go mod

Finally there is another scenario, which is to know the package name and get some sample demos through the documentation.

Put the code directly into the project, and then use go tidy to automatically regulate package dependencies.

Some common sense

  • 1. The package name is the warehouse address

For example: github.com/gin-gonic/gin

Most registrations are the warehouse address where the code is located, and most of them can be accessed directly.

  • 2. Packages inside packages

There is a very interesting thing about dependent packages. Sometimes the packages used are packages inside packages.

It may be a bit convoluted, but it’s easy to understand.

For example, at the beginning of the article: golang.org/x/crypto/sshThis package,

is golang.org/x/crypto package below.

So if you install the ssh package directly, the package will often not be found, so you need to install it at the upper level.

The above is the detailed content of Are there any dependent packages in Go language?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use third-party packages in Go language? How to use third-party packages in Go language? Jun 01, 2024 am 11:39 AM

To use third-party packages in Go: Use the goget command to install the package, such as: gogetgithub.com/user/package. Import the package, such as: import("github.com/user/package"). Example: Use the encoding/json package to parse JSON data: Installation: gogetencoding/json Import: import("encoding/json") Parsing: json.Unmarshal([]byte(jsonString),&data)

Go language: a powerful and flexible scripting language Go language: a powerful and flexible scripting language Apr 08, 2024 am 09:57 AM

The Go language is a modern open source programming language known for its concurrency support, memory safety, and cross-platform compatibility. It is also an excellent scripting language, providing a rich set of built-in functions and utilities, including: Concurrency support: Simplifies scripting to perform multiple tasks simultaneously. Memory safety: The garbage collector automatically releases unused memory to prevent memory leaks. Cross-platform compatibility: Can be compiled on Windows, Linux, macOS and mobile platforms. Rich standard library: Provides common script functions such as file I/O, network requests, and regular expressions.

Learn how to calculate variance in Go Learn how to calculate variance in Go Feb 23, 2024 pm 09:30 PM

Learn how to solve for variance in Golang. In statistics, variance is an important indicator of the dispersion of a set of data. It is used to measure the difference between each data point in the data set and the mean. In Golang, we can solve for the variance of a set of data by writing code. Next, we will introduce how to implement variance calculation in Golang and provide specific code examples. 1. Definition of variance The calculation formula of variance is as follows: [Var(X)=rac{

How to define and use custom types using Go language? How to define and use custom types using Go language? Jun 05, 2024 pm 12:41 PM

In Go, custom types can be defined using the type keyword (struct) and contain named fields. They can be accessed through field access operators and can have methods attached to manipulate instance state. In practical applications, custom types are used to organize complex data and simplify operations. For example, the student management system uses the custom type Student to store student information and provide methods for calculating average grades and attendance rates.

Go Language Ecosystem: A Look at the Top Libraries Go Language Ecosystem: A Look at the Top Libraries Apr 08, 2024 pm 06:51 PM

The Go language ecosystem provides a rich and powerful library, including: Gin (a framework for building web applications) Gorm (an ORM for managing database interactions) Zap (for high-performance logging) Viper (for management Application configuration) Prometheus (for monitoring and alerting) These libraries help developers build robust and maintainable Go applications quickly and efficiently.

How to test packages in Go? How to test packages in Go? Jun 01, 2024 am 11:50 AM

By using the Go language's built-in testing framework, developers can easily write and run tests for their code. The test file ends with _test.go and contains the test function starting with Test, where the *testing.T parameter represents the test instance. Error information is recorded using t.Error(). Tests can be run by running the gotest command. Subtests allow test functions to be broken down into smaller parts and created via t.Run(). The practical case includes a test file written for the IsStringPalindrome() function in the utils package, which uses a series of input strings and expected output to test the correctness of the function.

Are there any dependent packages in Go language? Are there any dependent packages in Go language? Apr 17, 2023 pm 04:14 PM

There are dependent packages in the Go language. The methods for installing dependent packages are: 1. Use the "go get" command to install the dependent packages; 2. Enable "go mod", and then use "go get" to pull the package in the project directory; 3. , Manually download the dependency package in github and put it in the corresponding directory; 4. Copy the corresponding package under "GOPATH/pkg/mod"; 5. Put the code directly into the project, and then use "go tidy" to automatically organize the package dependencies That’s it.

Application of Go language in Android system Application of Go language in Android system Apr 08, 2024 am 11:36 AM

The Go language can be widely used in the Android system and can be used to build AndroidActivities and Services for data processing and analysis, including: using the Go language in AndroidActivity: introducing the Go language library, creating Go language classes, and in the AndroidManifest.xml file Register Go language class. Use Go language in AndroidService: Create a Go language class and register the Go language class in the AndroidManifest.xml file. Use Go language for data processing and analysis: it can be used to build HTTP API, concurrent processing tasks, and encode and decode binary data.