Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1287 from rphmeier/update_readme
Browse files Browse the repository at this point in the history
clarify build instructions
  • Loading branch information
rphmeier authored Jun 15, 2016
2 parents 0f1e2f5 + 2527130 commit 6b852a0
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,19 @@ Parity is fully compatible with Stable Rust.
We recommend installing Rust through [rustup](https://www.rustup.rs/). If you don't already have rustup, you can install it like this:

- Linux and OSX:
```bash
$ curl https://sh.rustup.rs -sSf | sh
```
```bash
$ curl https://sh.rustup.rs -sSf | sh
```

- Windows

Make sure you have Visual Studio 2015 with C++ support installed, download and run [rustup](https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe) and use the following command to setup msvc toolchain:

```
rustup default stable-x86_64-pc-windows-msvc
```

Make sure you have Visual Studio 2015 with C++ support installed. Next, download and run the rustup installer from
https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe and use the following command to install and set up the msvc toolchain:
```
$ rustup default stable-x86_64-pc-windows-msvc
```

Then, download and build Parity:
Once you have rustup, download and build parity:

```bash
# download Parity code
Expand All @@ -67,12 +66,11 @@ $ cd parity
$ cargo build --release
```

This will produce an executable in the `target/release` subdirectory.
Either run `cd target/release`, or copy `target/release/parity` to another location.
This will produce an executable in the `./target/release` subdirectory.

To get started, just run
```bash
$ parity
$ ./target/release/parity
```

and parity will begin syncing the Ethereum blockchain.
and parity will begin syncing the Ethereum blockchain.

0 comments on commit 6b852a0

Please sign in to comment.