fyne-io / defyne

The Fyne IDE
Other
197 stars 26 forks source link

Cannot `go get` the project #6

Closed orsinium closed 3 years ago

orsinium commented 3 years ago
❯ go get github.com/fyne-io/defyne        
go: downloading github.com/fyne-io/defyne v0.0.0-20210412103144-b07e6a0b41ed
go: downloading fyne.io/fyne/v2 v2.0.2
go: downloading fyne.io/x/fyne v0.0.0-20210407180700-b277e3225fbe
go: downloading github.com/fyne-io/terminal v0.0.0-20210410133030-a03d1d963afd
go: downloading github.com/creack/pty v1.1.11
go: downloading github.com/fyne-io/mobile v0.1.3-0.20210318200029-09e9c4e13a8f
go: downloading github.com/go-gl/glfw/v3.3/glfw v0.0.0-20210311203641-62640a716d48
# github.com/fyne-io/defyne
go/pkg/mod/github.com/fyne-io/defyne@v0.0.0-20210412103144-b07e6a0b41ed/defyne.go:20:15: undefined: container.DocTabs
go/pkg/mod/github.com/fyne-io/defyne@v0.0.0-20210412103144-b07e6a0b41ed/panels.go:18:15: undefined: container.NewDocTabs

❯ echo $?                         
2

❯ go version  
go version go1.16 linux/amd64
andydotxyz commented 3 years ago

Ah, good catch, this requires an unreleased version of Fyne (from the develop branch), it looks like the go.mod is not correct.

andydotxyz commented 3 years ago

This should now be resolved, let me know how you get on :)

orsinium commented 3 years ago

It works, thank you :)