当前位置:网站首页>Go 1.16.4: manage third-party libraries with Mod
Go 1.16.4: manage third-party libraries with Mod
2022-07-03 13:48:00 【Lao Liu, you are so awesome】
One , View the available versions of a third-party library :
Here to gin For example :
[email protected]:~$ go list -m -versions github.com/gin-gonic/gin
github.com/gin-gonic/gin v1.1.1 v1.1.2 v1.1.3 v1.1.4 v1.3.0 v1.4.0
v1.5.0 v1.6.0 v1.6.1 v1.6.2 v1.6.3 v1.7.0 v1.7.1 v1.7.2 explain : Liu Hongdi's go The forest is a focus golang The blog of ,
Address :https://blog.csdn.net/weixin_43881017
explain : author : Liu Hongdi mailbox : [email protected]
Two , View the locally downloaded version :
[email protected]:~$ ls /home/liuhongdi/go/pkg/mod/github.com/gin-gonic
[email protected] [email protected]explain :/home/liuhongdi/go/pkg/mod yes GOMODCACHE The path of ,
Used to save third-party libraries
example :
[email protected]:~$ go env
...
GOMODCACHE="/home/liuhongdi/go/pkg/mod"3、 ... and , Download the specified version of the third-party library :
explain : stay @ Later specified version
[email protected]:~$ go get github.com/gin-gonic/[email protected]
go: downloading github.com/gin-gonic/gin v1.7.1Check the effect after downloading :
[email protected]:~$ ls /home/liuhongdi/go/pkg/mod/github.com/gin-gonic
[email protected] [email protected] [email protected]Four , Download the latest version of the third-party library :
[email protected]:~$ go get -u github.com/gin-gonic/gin
…See the effect :
[email protected]:~$ ls /home/liuhongdi/go/pkg/mod/github.com/gin-gonic
[email protected] [email protected] [email protected] [email protected]5、 ... and , Use the specified version of the third-party library in the project :
explain : It needs to be operated under the project directory
Check out the original version :
[email protected]:/data/liuhongdi/digv01$ more go.mod
module github.com/liuhongdi/digv01
go 1.16
require (
github.com/gin-gonic/gin v1.6.3
github.com/jinzhu/gorm v1.9.16
)Specify the use of v1.7.2 edition
[email protected]:/data/liuhongdi/digv01$ go get github.com/gin-gonic/[email protected]
[email protected]:/data/liuhongdi/digv01$ more go.mod
module github.com/liuhongdi/digv01
go 1.16
require (
github.com/gin-gonic/gin v1.7.2
github.com/jinzhu/gorm v1.9.16
)6、 ... and , View all dependencies of the third-party library of the specified project :
explain : It needs to be operated under the project directory
[email protected]:/data/liuhongdi/digv01$ go list -m all
github.com/liuhongdi/digv01
github.com/PuerkitoBio/goquery v1.5.1
github.com/andybalholm/cascadia v1.1.0
...7、 ... and , Manually remove a dependency from the project :
see go.mod
[email protected]:/data/liuhongdi/digv01$ more go.mod
module github.com/liuhongdi/digv01
go 1.16
require (
github.com/gin-gonic/gin v1.7.0
github.com/jinzhu/gorm v1.9.16
)Delete
# -droprequire: Specify the dependencies to remove
[email protected]:/data/liuhongdi/digv01$ go mod edit -droprequire=github.com/gin-gonic/ginSee the effect
[email protected]:/data/liuhongdi/digv01$ more go.mod
module github.com/liuhongdi/digv01
go 1.16
require github.com/jinzhu/gorm v1.9.168、 ... and , Add a dependency manually in the project :
explain : Version required
# -require: Specify the dependencies to add
[email protected]:/data/liuhongdi/digv01$ go mod edit -require=github.com/gin-gonic/[email protected]See the effect
[email protected]:/data/liuhongdi/digv01$ more go.mod
module github.com/liuhongdi/digv01
go 1.16
require (
github.com/gin-gonic/gin v1.7.1
github.com/jinzhu/gorm v1.9.16
)explain : And execute under the project directory go get The same command
Nine , see go Version of :
[email protected]:/data/go/mod3$ go version
go version go1.16.4 linux/amd64
边栏推荐
- Unity embeddedbrowser browser plug-in event communication
- Setting up remote links to MySQL on Linux
- SQL Injection (AJAX/JSON/jQuery)
- JVM系列——概述,程序计数器day1-1
- MapReduce implements matrix multiplication - implementation code
- SwiftUI 开发经验之作为一名程序员需要掌握的五个最有力的原则
- 【BW16 应用篇】安信可BW16模组与开发板更新固件烧录说明
- mysql中的字段问题
- CVPR 2022 | 美团技术团队精选6篇优秀论文解读
- Record 405 questions about bank callback post request
猜你喜欢

Tutoriel PowerPoint, comment enregistrer une présentation sous forme de vidéo dans Powerpoint?
![[quantitative trading] permanent portfolio, turtle trading rules reading, back testing and discussion](/img/3b/28327bbf5eb19254f03500a41e2adb.jpg)
[quantitative trading] permanent portfolio, turtle trading rules reading, back testing and discussion

SQL Injection (POST/Search)

The latest BSC can pay dividends. Any B usdt Shib eth dividend destruction marketing can

User and group command exercises

Error running 'application' in idea running: the solution of command line is too long

Introduction to the implementation principle of rxjs observable filter operator

Unity embeddedbrowser browser plug-in event communication

Today's sleep quality record 77 points
![[technology development-24]: characteristics of existing IOT communication technology](/img/f3/a219fe8e7438b8974d2226b4c3d4a4.png)
[technology development-24]: characteristics of existing IOT communication technology
随机推荐
Typeerror resolved: argument 'parser' has incorrect type (expected lxml.etree.\u baseparser, got type)
父亲和篮球
Flutter动态化 | Fair 2.5.0 新版本特性
[understanding by chance-37]: the structure of human sensory system determines that human beings are self-centered
Mysql:insert date:SQL 错误 [1292] [22001]: Data truncation: Incorrect date value:
This math book, which has been written by senior ml researchers for 7 years, is available in free electronic version
Logback log sorting
SQL Injection (GET/Select)
MySQL functions and related cases and exercises
Mastering the cypress command line options is the basis for truly mastering cypress
8 Queen question
Red hat satellite 6: better management of servers and clouds
IBEM mathematical formula detection data set
The R language GT package and gtextras package gracefully and beautifully display tabular data: nflreadr package and gt of gtextras package_ plt_ The winloss function visualizes the win / loss values
logback日志的整理
物联网毕设 --(STM32f407连接云平台检测数据)
Several common optimization methods matlab principle and depth analysis
The shadow of the object at the edge of the untiy world flickers, and the shadow of the object near the far point is normal
Another industry has been broken by Chinese chips. No wonder the leading analog chip companies in the United States have cut prices and sold off
NFT新的契机,多媒体NFT聚合平台OKALEIDO即将上线