Skip to content
Snippets Groups Projects
Commit b002a229 authored by Mickael GUIBERT's avatar Mickael GUIBERT Committed by Maxence Naud
Browse files

Update Readme for Windows installation

parent 7e346baa
No related branches found
No related tags found
No related merge requests found
...@@ -80,7 +80,36 @@ Then to run a container, run ...@@ -80,7 +80,36 @@ Then to run a container, run
``` ```
docker run --name mycontainer -it aidge:myenv 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 ## Contributing
If you would like to contribute to the Aidge project, we’re happy to have your help! If you would like to contribute to the Aidge project, we’re happy to have your help!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment