File tree Expand file tree Collapse file tree 1 file changed +19
-8
lines changed Expand file tree Collapse file tree 1 file changed +19
-8
lines changed Original file line number Diff line number Diff 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
5870Open 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)
6476curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.75
65-
77+ # Setup the current shell with rustup
6678source " $HOME /.cargo/env"
67-
79+ # Clone the openmina repository
6880git clone https://github.com/openmina/openmina.git
69-
7081cd openmina/
71-
82+ # Build and run the node
7283cargo run --release -p cli node
7384```
7485
You can’t perform that action at this time.
0 commit comments