为了账号安全,请及时绑定邮箱和手机立即绑定

go 新建package其它包无法直接调用

go 新建package其它包无法直接调用

Go
尚方宝剑之说 2018-08-26 13:41:55
go 新建package其它包无法直接调用,是不是要go install 一下?
查看完整描述

2 回答

?
www说

TA贡献1775条经验 获得超8个赞

是不是在GOPATH下呢
放在GOPATH/src目录下试试

查看完整回答
1 反对 回复 2018-09-04
?
MMTTMM

TA贡献1869条经验 获得超4个赞

If the name of a package does not start with . or /, like “fmt” or “container/list”, Go looks for it inthe global Go tree. If it starts with ./ the package is searched in the actual directory; starting with /(even on Windows) it is searched for in the (absolute) path indicated.

出自 The Way To Go

按照我自己理解解释下:
$GOROOT 系统中Go的根目录
$GOPATH 用来安装第三方包的目录,自己随便指定
例如,使用 go get xxx 安装的包会被放到 $GOPATH/src 下面

对于自己写的模块,最简单的方式就是用相对或绝对路径导入
如果想方便地在全局使用,像 "import "fmt" 一样
推荐在$GOPATH/src下建立相应的package,当然放$GOROOT也是可以的


查看完整回答
反对 回复 2018-09-04
  • 2 回答
  • 0 关注
  • 1792 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信