Skip to content

Commit d212ebd

Browse files
authored
Include Ubuntu Rust setup commands
1 parent f1fb6f9 commit d212ebd

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tutorials/polkadot-sdk/parachains/zero-to-hero/set-up-a-template.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,23 @@ Before getting started, ensure you have done the following:
3333

3434
For this tutorial series, you need to use Rust `1.86`. Newer versions of the compiler may not work with this parachain template version.
3535

36-
Run the following commands to set up the correct Rust version:
36+
### macOS
3737

3838
```bash
3939
rustup default 1.86
4040
rustup target add wasm32-unknown-unknown --toolchain 1.86-aarch64-apple-darwin
4141
rustup component add rust-src --toolchain 1.86-aarch64-apple-darwin
4242
```
4343

44+
### Ubuntu
45+
46+
```bash
47+
rustup toolchain install 1.86.0
48+
rustup default 1.86.0
49+
rustup target add wasm32-unknown-unknown --toolchain 1.86.0
50+
rustup component add rust-src --toolchain 1.86.0
51+
```
52+
4453
## Utility Tools
4554

4655
This tutorial requires two essential tools:

0 commit comments

Comments
 (0)