diff --git a/README.md b/README.md
index a40e33be7696d684af6113f7e823287136b2755d..0a6acf83b6dd28f0c3c3c6ed108095aa2c6d07e0 100644
--- a/README.md
+++ b/README.md
@@ -167,10 +167,16 @@ CATGAATGGTATAAACCGGCGTGCC	680	-0.8043242669169294	CP027060.1
 
 ## Contributing
 
+### Clone repo
+
+```console
+$ git clone https://gitlab.pasteur.fr/dbikard/crisprbact.git
+```
+
 ### Create a virtualenv
 
 ```console
-$ virtualenv -p pyton3.7 .venv
+$ virtualenv -p python3.7 .venv
 $ . .venv/bin/activate
 $ pip install poetry
 ```
@@ -183,18 +189,8 @@ $ poetry install
 
 ### Install hooks
 
-```console
-$ pre-commit install
-```
-
-
-<!--
-### Change hooks
-
+In order to run flake8 and black for each commit.
 
 ```console
-$ git config --unset-all core.hooksPath
 $ pre-commit install
-$ cp .git/hooks/pre-commit .hooks/pre-commit
-$ git config core.hooksPath .hooks/
-``` -->
+```