go mod download github.com/gin-gonic/gin@v1.9.(依赖路径)
依赖对其(使引用的都是所依赖的)
go mod tidy
编辑go.mod
go mod edit
go mod edit -require="github.com/gin-gonic/gin@v1.9.0"go mod edit -replace="golang.org/x/crypto@v8.0.0=github.com/golang/crypto@v1.2.3"go mod edit -exclude="github.com/gin-gonic/gin@v1.9.0"go mod edit -retract="v1.0.0"go mod edit -dropretract="v1.0.0"
将所有的依赖从go/pkg/mod备份到vendor中
go mod vendor
验证mod是否改变
go mod verify
找原因为什么引用某个依赖
go mod why github.com/go-playground/validator/v10
安装可执行文件(在go/bin中找到)
go install github.com/google/gops@Llatest()
go get github.com/gin-gonic/gin
一、期刊名称
Central European Journal of Operations Research 二、期刊简介概况
期刊类型:SCI
学科领域:管理学
影响因子:1.7
中科院分区:4区
出版方式:订阅模式/开放出版
版面费:选择开放出版需…
Pytorch常用的函数(九)torch.gather()用法
torch.gather() 就是在指定维度上收集value。
torch.gather() 的必填也是最常用的参数有三个,下面引用官方解释:
input (Tensor) – the source tensordim (int) – the axis along which to indexindex (Lo…
创建数据库chat
show databases:展示所有的数据库
create database chat:创建一个数据库chat
use chat:使用数据库 创建表User、Friend、AllGroup、GroupUser、OfflineMessage
表User包含:用户id、用户名、用户密码、当前登录…