mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
445 B
25 lines
445 B
6 years ago
|
---
|
||
|
title: Installation instructions for Arch
|
||
|
---
|
||
|
## Installing using pacman
|
||
|
|
||
|
The `geth` package is available from the [community repo](https://www.archlinux.org/packages/community/x86_64/geth/).
|
||
|
|
||
|
You can install it using
|
||
|
|
||
|
```shell
|
||
|
pacman -S geth
|
||
|
```
|
||
|
|
||
|
## Installing from source
|
||
|
Install dependencies
|
||
|
```shell
|
||
|
pacman -S git go gcc
|
||
|
```
|
||
|
|
||
|
Download and build geth
|
||
|
```shell
|
||
|
git clone https://github.com/ethereum/go-ethereum
|
||
|
cd go-ethereum
|
||
|
make geth
|
||
|
```
|