gizak / termui

Golang terminal dashboard
MIT License
13.06k stars 783 forks source link

go does not pull in packages #261

Open zorgrian opened 4 years ago

zorgrian commented 4 years ago

Does not work!

dep ensure -add github.com/gizak/termui

Apart from that

Apart from that the thing looks really great, except I cannot make it work!

Go get <---------->

go get fails as it says there is no toml file

Please let me know how to use this

thanks

zorgrian commented 4 years ago

Go modules???

in the .md file it says:

It is not necessary to go get termui, since Go will automatically manage any imported dependencies for you. Do note that you have to include /v3 in the import statements as shown in the 'Hello World' example below.

However, this does not seem to work at all

CurtisMIT commented 4 years ago

@zorgrian have you tried doing

$ go mod init github.com/zorgrian/yourpkgname

then try running the code?