Skip to content

Commit adf6f81

Browse files
authored
Merge pull request #252 from openmina/develop
Medge `develop` into `main` (docs)
2 parents 18948d2 + b40fc2a commit adf6f81

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

README.md

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,24 +51,35 @@ This installation guide has been tested on Debian and Ubuntu and should work on
5151

5252
**Pre-requisites:**
5353

54-
Ubuntu or Debian-based Linux distribution.
54+
Ubuntu or Debian-based Linux distribution with the following packages installed:
55+
56+
- `curl`
57+
- `git`
58+
- `libssl-dev`
59+
- `pkg-config`
60+
61+
Example:
62+
63+
``` sh
64+
# Either using "sudo" or as the "root" user
65+
sudo apt install curl git libssl-dev pkg-config
66+
```
5567

5668
**Steps (for Debian-based Linux distros):**
5769

5870
Open up the command line and enter the following:
5971

72+
And then:
6073

61-
``` sh
62-
apt install curl git
63-
74+
```sh
75+
# Install rustup and set the default Rust toolchain to 1.75 (newer versions work too)
6476
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.75
65-
77+
# Setup the current shell with rustup
6678
source "$HOME/.cargo/env"
67-
79+
# Clone the openmina repository
6880
git clone https://github.com/openmina/openmina.git
69-
7081
cd openmina/
71-
82+
# Build and run the node
7283
cargo run --release -p cli node
7384
```
7485

0 commit comments

Comments
 (0)