Skip to content
Snippets Groups Projects
Commit 10166023 authored by “KatrinBistreck”'s avatar “KatrinBistreck”
Browse files

change order of build environment installations

parent c2dfcfbe
Branches
No related tags found
2 merge requests!76Draft: Updated Python code example,!73Initial open source version
Pipeline #1524838 waiting for manual action
......@@ -18,6 +18,31 @@ The tools used are:
---
## Install Python
- Download and install **Python**: [Download Python :octicons-link-external-16:](https://www.python.org/downloads/windows/){:target="_blank"}
!!! warning
Please install version **3.11**, select all the default options and check the option to add Python to *PATH* & make sure to include the debug binaries!
![Python settings](../../assets/images/developer/python-debug-binaries.png)
### Python Dependencies
The only Python dependency we have is `pipenv` which is used to manage the Python environment.
Install it by executing the following command in a terminal after you have **successfully** installed Python:
```{.sh .copy}
pip install pipenv
```
---
## Install Git
- Download and Install the latest release of **Git**: [Download Git :octicons-link-external-16:](https://git-scm.com/download/win){:target="_blank"}
- Enable the option to make **Git** available in *PATH*.
- Leave the rest of the options to their defaults.
---
## Install Build Tools
- Download the build tools from Microsoft: [Download Build Tools :octicons-link-external-16:](https://visualstudio.microsoft.com/downloads/?q=build+tools#build-tools-for-visual-studio-2022){:target="_blank"}
......@@ -64,34 +89,12 @@ You can get more information how *vcpkg* can be installed in the [Readme :octico
## Install CMake
- Download and Install the latest release of **CMake**: [Download CMake :octicons-link-external-16:](https://cmake.org/download/){:target="_blank"}
!!! important
!!! important
Install at least version **3.29**!
- Enable the option to make **CMake** available in *PATH*.
---
## Other tools
### Install Python
- Download and install **Python**: [Download Python :octicons-link-external-16:](https://www.python.org/downloads/windows/){:target="_blank"}
!!! warning
Please install version **3.11**, select all the default options and check the option to add Python to *PATH* & make sure to include the debug binaries!
![Python settings](../../assets/images/developer/python-debug-binaries.png)
#### Python Dependencies
The only Python dependency we have is `pipenv` which is used to manage the Python environment.
Install it by executing the following command in a terminal after you have **successfully** installed Python:
```{.sh .copy}
pip install pipenv
```
### Install Git
- Download and Install the latest release of **Git**: [Download Git :octicons-link-external-16:](https://git-scm.com/download/win){:target="_blank"}
- Enable the option to make **Git** available in *PATH*.
- Leave the rest of the options to their defaults.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment