rustup and windows instructions

This commit is contained in:
Arkadiy Paronyan 2016-06-13 19:22:54 +02:00 committed by GitHub
parent 6b12334136
commit f5efd444f5
1 changed files with 10 additions and 7 deletions

View File

@ -42,16 +42,19 @@ Parity is fully compatible with Stable Rust.
We recommend installing Rust through [multirust](https://github.com/brson/multirust). If you don't already have multirust, you can install it like this: We recommend installing Rust through [multirust](https://github.com/brson/multirust). If you don't already have multirust, you can install it like this:
- Linux: - Linux and OSX:
```bash ```bash
$ curl -sf https://raw.githubusercontent.com/brson/multirust/master/quick-install.sh | sh $ curl https://sh.rustup.rs -sSf | sh
``` ```
- OSX with Homebrew: - Windows
```bash
$ brew update && brew install multirust 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:
$ multirust default stable
``` ```
rustup default stable-x86_64-pc-windows-msvc
```
Then, download and build Parity: Then, download and build Parity:
@ -72,4 +75,4 @@ To get started, just run
$ parity $ parity
``` ```
and parity will begin syncing the Ethereum blockchain. and parity will begin syncing the Ethereum blockchain.