diff --git a/README.md b/README.md
index 8175c9c603572fc6ae21ff12cfaed1952d5700a9..150b3b7e4aaba204d72e31cb483dabf6b382ab56 100644
--- a/README.md
+++ b/README.md
@@ -80,7 +80,36 @@ Then to run a container, run
 ```
 docker run --name mycontainer -it aidge:myenv
 ```
+#### Build on Windows
+
+On your session,
+1) Install Visual Studio Community. Get it from https://visualstudio.microsoft.com/fr/vs/community/)
+2) Install MSVC
+3) Install GIT (Source code control program). Get it from: https://git-scm.com/download)
+4) Install CMake (Solution for managing the software build process). Get it from: https://cmake.org/download/
+5) Install Python (Programming language). Get it from: https://www.python.org/download/
+6) Install pip
+7) Install VS Code. Get it from https://code.visualstudio.com/download => add following extensions (Python, CMake)
+8) create and launch virtual environnement (venv)
+```
+python -m venv myenv
+```
+```
+.\myenv\Scripts\activate
+```
+9) Place in aidge repository and execute
+```
+python.exe .\setup.py install
+```
+You can test your installation by running
+```bash
+python -c "import aidge_core; import aidge_backend_cpu; print(aidge_core.Tensor.get_available_backends())"
+```
 
+You should have the following in your terminal:
+```
+{'cpu'}
+```
 ## Contributing
 
 If you would like to contribute to the Aidge project, we’re happy to have your help!