Open Syzygianinfern0 opened 4 years ago
Same error up here
Ubuntu 20.04.1 LTS Go 1.13.8 go get github.com/dogbin/inu returns same error
Got any fix so far?
Got any fix so far?
Nope
Seems like a cli versioning issue, try with
GO111MODULE=on go get -u github.com/dogbin/inu
Worked for me, credits to https://github.com/DarthSim/hivemind/issues/16
Seems like a cli versioning issue, try with
GO111MODULE=on go get -u github.com/dogbin/inu
Worked for me, credits to DarthSim/hivemind#16
It did install this after doing this but when I do inu help
it gives command not found
You have to add ~/go/bin or wherever your go packages install to your path, in my particular case its ~/go/bin so for instance I added this to my ~/.bashrc
[[ $PATH != ?(*:)$HOME/go/bin?(:*) ]] && export PATH=$HOME/go/bin:$PATH
save it, open a new terminal and ur good to go
You have to add ~/go/bin or wherever your go packages install to your path, in my particular case its ~/go/bin so for instance I added this to my ~/.bashrc
[[ $PATH != ?(*:)$HOME/go/bin?(:*) ]] && export PATH=$HOME/go/bin:$PATH
save it, open a new terminal and ur good to go
Alright it did work, added to bashrc. Thanks for help : )
I have installed Go from the official Arch Linux repos and have also tested the install from the official docs