portal icon indicating copy to clipboard operation
portal copied to clipboard

Can not install with `go install`

Open abferm opened this issue 2 years ago • 2 comments

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

abferm avatar Apr 18 '22 16:04 abferm

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

abferm avatar Jun 02 '22 21:06 abferm

These changes are still in develop, but will be merged into master soon.

ZinoKader avatar Jun 02 '22 21:06 ZinoKader

This should be fixed since a while back, closing.

ZinoKader avatar Jan 18 '23 15:01 ZinoKader