portal
portal copied to clipboard
Can not install with `go install`
I wanted to install on an armhf (32-bit arm) host, and attempted to install via go install
because the releases only include arm64 binaries.
Error output:
go install -v github.com/ZinoKader/portal/cmd/[email protected]
go: downloading github.com/ZinoKader/portal v1.0.3
go: github.com/ZinoKader/portal/cmd/[email protected]: github.com/ZinoKader/[email protected]: parsing go.mod:
module declares its path as: www.github.com/ZinoKader/portal
but was required as: github.com/ZinoKader/portal
The package is still not installable using go install after the move to the organization.
go.mod and all import paths need to be updated to reference github.com/SpatiumPortae/portal
.
go install -v github.com/SpatiumPortae/portal/cmd/portal@latest:
#18 9.438 go: downloading github.com/SpatiumPortae/portal v1.0.3
#18 9.537 go: github.com/SpatiumPortae/portal/cmd/portal@latest: github.com/SpatiumPortae/[email protected]: parsing go.mod:
#18 9.537 module declares its path as: www.github.com/ZinoKader/portal
#18 9.537 but was required as: github.com/SpatiumPortae/portal
These changes are still in develop, but will be merged into master soon.
This should be fixed since a while back, closing.