diff --git a/README.md b/README.md
index b9175f8c7c64d6c5ae3749ce20e1be7875892b61..e8cf6a64979edb59708617bf5d4cff6f0ff809b5 100644
--- a/README.md
+++ b/README.md
@@ -58,10 +58,6 @@ pip install --user duniterpy
 Once you want to add DuniterPy to your Python project, you can add it as a dependency to your Python development environment: `pyproject.toml`, `requirements.txt`, `setup.py`.
 We recommend [Poetry](https://python-poetry.org) usage.
 
-## Install the development environment
-
-- [Install Poetry](https://python-poetry.org/docs/#installation)
-
 ## Documentation
 
 [Online official automaticaly generated documentation](https://clients.pages.duniter.org/python/duniterpy/index.html)
@@ -74,15 +70,17 @@ The [examples folder](https://git.duniter.org/clients/python/duniterpy/tree/mast
 - Run examples from parent folder directly
 
 ```bash
-poetry run python examples/request_data.py
+python examples/request_data.py
 ```
 
 Or from Python interpreter:
 
 ```bash
-poetry run python
+python
 >>> import examples
+# To list available examples
 >>> help(examples)
+# Run example
 >>> examples.create_public_key()
 ```