diff --git a/doc/quick-start.md b/doc/quick-start.md
index 0465553fbe95f43467e06378ef1e8954d0fd0bac..e2501f57a9edcf5fb9416d4953504dd412e5b224 100644
--- a/doc/quick-start.md
+++ b/doc/quick-start.md
@@ -7,7 +7,19 @@
 - [yarn](https://classic.yarnpkg.com/en/docs/install/)
 - [python 2.7](https://www.python.org/downloads/) (Linux? -> you allready have it)
 - [gcc](https://github.com/nodejs/node-gyp#installation)
+
+```bash
+# install node gyp fo compile C/C++ dependencies (sqlite and leveldb)
+npm i -g node-gyp
+```
+
 - [rust](https://www.rust-lang.org/learn/get-started)
+
+```bash
+# install cargo for rust
+curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
+```
+
 - [Gitlab](https://git.duniter.org/) account (optional, needed to contribute)
 
 ## Install
@@ -15,8 +27,9 @@
 ```bash
 git clone https://git.duniter.org/nodes/typescript/duniter.git
 cd duniter
-yarn
+rustup update
 yarn add duniter-ui
+yarn
 bin/duniter webstart
 ```