diff --git a/docs/developer/build/python.md b/docs/developer/build/python.md
index 5df9d91a08331be7e1b0293d57c83ea802f2df51..6bacd1a18788f25117a12927203c2165672d12b2 100644
--- a/docs/developer/build/python.md
+++ b/docs/developer/build/python.md
@@ -52,14 +52,14 @@ Now this is the difference to the Cpp tools. The python tools use some of the Cp
 
 === "Windows"
 
-    ```sh
-    cmake --build --preset x64-windows-release -t install_python_package
+    ``` { .sh .copy }
+    cmake --build --preset x64-windows-release -t install_python_packages
     ```
 
 === "MinGW"
 
-    ```sh
-    cmake --build --preset x64-mingw-release -t install_python_package
+    ``` { .sh .copy }
+    cmake --build --preset x64-mingw-release -t install_python_packages
     ```
 
     !!! tip
@@ -67,8 +67,8 @@ Now this is the difference to the Cpp tools. The python tools use some of the Cp
 
 === "Unix"
 
-    ```sh
-    cmake --build --preset x64-linux-release -t install_python_package
+    ``` { .sh .copy }
+    cmake --build --preset x64-linux-release -t install_python_packages
     ```
 
     !!! tip
@@ -81,13 +81,13 @@ Same as for Cpp:
 
 === "Windows"
 
-    ```sh
+    ``` { .sh .copy }
     cmake --build --preset x64-windows-release --target <target>
     ```
 
 === "MinGW"
 
-    ```sh
+    ``` { .sh .copy }
     cmake --build --preset x64-mingw-release --target <target>
     ```
 
@@ -96,7 +96,7 @@ Same as for Cpp:
 
 === "Unix"
 
-    ```sh
+    ``` { .sh .copy }
     cmake --build --preset x64-linux-release --target <target>
     ```