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
[](http://waffle.io/ethereum/go-ethereum)
As of POC-8, go-ethereum uses [Godep](https://github.com/tools/godep) to manage dependencies. Assuming you have [your environment all set up](https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum), switch to the go-ethereum repository root folder, and build/install the executable you need:
28
-
29
-
Mist (GUI):
30
-
31
-
```
32
-
godep go build -v ./cmd/mist
33
-
```
34
-
35
-
Geth (CLI):
36
-
37
-
```
38
-
godep go build -v ./cmd/geth
39
-
```
40
-
41
-
Instead of `build`, you can use `install` which will also install the resulting binary.
42
-
43
-
For prerequisites and detailed build instructions please see the [Wiki](https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum)
44
-
45
-
If you intend to develop on go-ethereum, check the [Developers' Guide](https://github.com/ethereum/go-ethereum/wiki/Developers'-Guide)
Both `mist` and `geth` can be configured via command line options, environment variables and config files.
77
58
78
59
To get the options available:
79
60
80
-
```
81
-
geth -help
82
-
```
61
+
geth --help
83
62
84
63
For further details on options, see the [wiki](https://github.com/ethereum/go-ethereum/wiki/Command-Line-Options)
85
64
@@ -92,6 +71,6 @@ are ignored (use gofmt!). If you send pull requests make absolute sure that you
92
71
commit on the `develop` branch and that you do not merge to master.
93
72
Commits that are directly based on master are simply ignored.
94
73
95
-
See [Developers' Guide](https://github.com/ethereum/go-ethereum/wiki/Developers'-Guide) for more details on configuring your environment, testing, and dependency management.
96
-
97
-
TEST
74
+
See [Developers' Guide](https://github.com/ethereum/go-ethereum/wiki/Developers'-Guide)
75
+
for more details on configuring your environment, testing, and
0 commit comments