'Fix GoLand not finding module dependencies ("cannot resolve...")?

I have installed my project's Go module dependencies with go build.

But GoLand is telling me it cannot resolve any of these dependencies.

How can I get GoLand to find the Go module dependencies?



Solution 1:[1]

navigate to path project with your file "go.mod" and execute the command line

go clean --modcache && go mod download

this will download every thing agai.

if was necessary, remote all require block from your go.mod with tag "// indirect" and execute command

go mod tidy

that will downlaod all sub-dependences again.

OBS: if you project path is in $PATH system, you need remove, because now the go.mod is the sufficient to replace it.

Solution 2:[2]

Well this sounds so easy, the error (ImportError: lxml not found, please install it) is that you did not install this lxml library

You can install this lib so simply, just write pip install lxml in your terminal or cmd.

type:

pip install lxml

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2