Skip to content

Commit

Permalink
Merge pull request #1191 from input-output-hk/abailly-iohk/fix-tutori…
Browse files Browse the repository at this point in the history
…al-on-mac-os

Fix URLs to download software and add some help text
  • Loading branch information
ch1bo committed Dec 1, 2023
2 parents 5fe5476 + d718182 commit 94d936c
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions docs/docs/tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ components of the Cardano ecosystem, putting them in a `bin/` directory:

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

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

</TabItem>
Expand Down Expand Up @@ -152,7 +157,10 @@ cardano-node run \
```

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

```shell
cardano-cli query tip
Expand Down

0 comments on commit 94d936c

Please sign in to comment.