Closed 0xstepit closed 1 year ago
repl.go:3:1: error loading package "github.com/thoas/go-funk" metadata, maybe you need to download (go get), compile (go build) and install (go install) it? can't find import: "github.com/thoas/go-funk"
Bumping this, I have the same issue
Has anyone made any progress on this? same issue:
That's really strange: importing packages from the standard library is supposed to always work, and in case it fails, it's unrelated to this issue. Maybe the cause is related to running inside WSL? It's a configuration I have never tested personally...
Commit 55142043d19696ba037e3e93f9ec6c7f8436e82d fixes most issues importing packages.
Some imports may still fail. Known reasons are:
import "github.com/cosmos/cosmos-sdk/types"
currently fails with:
error loading plugin "[...]/import_1.so": plugin.Open("[...]/import_1"):
plugin was built with a different version of package golang.org/x/text/transform
Hello, I'm trying to use gophernotes to test types of the following repo: https://github.com/cosmos/cosmos-sdk
I import the packages
and try to use:
On the terminal I receive the following message:
repl.go:2:12: not a type: sdk.MustAccAddressFromBech32 <*ast.SelectorExpr>
How can I solve it? thanks