orisano/dlayer

Error installing with go get - tview - undefined: runewidth.ZeroWidthJoiner

Closed this issue · 2 comments

go get github.com/orisano/dlayer
# github.com/rivo/tview
go/src/github.com/rivo/tview/util.go:56:2: undefined: runewidth.ZeroWidthJoiner

But the developer of the tview says that there shouldn't be any problem:
rivo/tview#548 (comment)

I can see that in the dlayer code the tview version is also pinned in the master:
https://github.com/orisano/dlayer/blob/master/go.mod#L10

So what's the correct way to install it with go?

ok, thanks for reporting.
please try to

GO111MODULE=on go get github.com/orisano/dlayer

ok, thanks for reporting.
please try to

GO111MODULE=on go get github.com/orisano/dlayer

It works. Thanks!