-2

I'm trying to build the Ethereum node Geth: https://github.com/ethereum/go-ethereum I cloned the project in my src folder ( in a folder called geth, should not metter, right? ) and when I try to run/compile does not find:

"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/accounts/keystore"
"github.com/ethereum/go-ethereum/cmd/utils"

and currently these file exists, as part of the project I'm trying to compile, so I don't actually understand why is referring the repository on line, and, in any case, why it does not work

Felice Pollano
  • 32,832
  • 9
  • 75
  • 115

1 Answers1

2

You must clone the geth source in the exact folder in your GOPATH, actual path should be GOPATH/src/github.com/ethereum/go-ethereum.

Roman Kiselenko
  • 43,210
  • 9
  • 91
  • 103