You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created a project using go-qemu but after creating module with go mod init and getting the dependencies with go get github.com/digitalocean/go-qemu/... , I ran go mod tidy and get the following: diego@edge:~/go-qemu$ go mod tidy go: finding module for package github.com/digitalocean/go-qemu go: go-qemu/example imports github.com/digitalocean/go-qemu: module github.com/digitalocean/go-qemu@latest found (v0.0.0-20230711162256-2e3d0186973e), but does not contain package github.com/digitalocean/go-qemu
and for go run, I get: diego@edge:~/go-qemu$ go run main.go main.go:10:2: no required module provides package github.com/digitalocean/go-qemu; to add it: go get github.com/digitalocean/go-qemu
There's something wrong with this lib?
The text was updated successfully, but these errors were encountered:
I created a project using go-qemu but after creating module with
go mod init
and getting the dependencies withgo get github.com/digitalocean/go-qemu/...
, I rango mod tidy
and get the following:diego@edge:~/go-qemu$ go mod tidy go: finding module for package github.com/digitalocean/go-qemu go: go-qemu/example imports github.com/digitalocean/go-qemu: module github.com/digitalocean/go-qemu@latest found (v0.0.0-20230711162256-2e3d0186973e), but does not contain package github.com/digitalocean/go-qemu
and for go run, I get:
diego@edge:~/go-qemu$ go run main.go main.go:10:2: no required module provides package github.com/digitalocean/go-qemu; to add it: go get github.com/digitalocean/go-qemu
There's something wrong with this lib?
The text was updated successfully, but these errors were encountered: