Skip to content

Commit 94d936c

Browse files
authored
Merge pull request #1191 from input-output-hk/abailly-iohk/fix-tutorial-on-mac-os
Fix URLs to download software and add some help text
2 parents 5fe5476 + d718182 commit 94d936c

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

docs/docs/tutorial/index.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ components of the Cardano ecosystem, putting them in a `bin/` directory:
4141

4242
```shell
4343
mkdir -p bin
44-
curl -L -O https://github.com/input-output-hk/hydra/releases/download/0.12.0/hydra-x86_64-unknown-linux-musl.zip
45-
unzip -d bin hydra-x86_64-unknown-linux-musl.zip
44+
curl -L -O https://github.com/input-output-hk/hydra/releases/download/0.14.0/hydra-x86_64-linux-0.14.0.zip
45+
unzip -d bin hydra-x86_64-linux-0.14.0.zip
4646
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz \
4747
| tar xz -C bin ./cardano-node ./cardano-cli
4848
curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2331.1/mithril-2331.1-linux-x64.tar.gz \
@@ -55,8 +55,13 @@ chmod +x bin/*
5555

5656
```shell
5757
mkdir -p bin
58-
curl -L -o - https://github.com/input-output-hk/hydra/releases/download/0.12.0/tutorial-binaries-aarch64-darwin.tar.gz \
58+
curl -L -O https://github.com/input-output-hk/hydra/releases/download/0.14.0/hydra-aarch64-darwin-0.14.0.zip
59+
unzip -d bin hydra-aarch64-darwin-0.14.0.zip
60+
curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2347.0/mithril-2347.0-macos-x64.tar.gz \
5961
| tar xz -C bin
62+
curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-macos.tar.gz \
63+
| tar xz -C bin cardano-node cardano-cli '*.dylib'
64+
chmod +x bin/mithril-client
6065
```
6166

6267
</TabItem>
@@ -152,7 +157,10 @@ cardano-node run \
152157
```
153158

154159
To interact with the `cardano-node` we will be using the `cardano-cli`
155-
with `cardano-cli` we can now check the synchronization status:
160+
with `cardano-cli` we can now check the synchronization status. You
161+
will need to open another terminal window as running the
162+
`cardano-node` in the foreground prevents you from running other
163+
commands:
156164

157165
```shell
158166
cardano-cli query tip

0 commit comments

Comments
 (0)