termui icon indicating copy to clipboard operation
termui copied to clipboard

go does not pull in packages

Open zorgrian opened this issue 4 years ago • 2 comments

Does not work!

dep ensure -add github.com/gizak/termui

  • The above fails: could not find project Gopkg.toml, use dep init to initiate a manifest

  • without doing the above, go does not fetch packages using /v3

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 avatar Mar 04 '20 15:03 zorgrian

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

zorgrian avatar Mar 04 '20 15:03 zorgrian

@zorgrian have you tried doing

$ go mod init github.com/zorgrian/yourpkgname

then try running the code?

CurtisMIT avatar Apr 18 '20 02:04 CurtisMIT