From 2389aa6b941bb317376ee9198cfec07f559702fb Mon Sep 17 00:00:00 2001 From: Luca Conte Date: Wed, 5 Mar 2025 22:00:55 +0100 Subject: [PATCH] some install instructions --- README.md | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9206085..6a2c616 100644 --- a/README.md +++ b/README.md @@ -1 +1,30 @@ -# Computer Grafik 1 \ No newline at end of file +# Dependencies Installieren + +```bash +sudo apt-get update +sudo apt-get install libglfw3 libglfw3-dev +sudo apt-get install libglew-dev +``` + +# WSL + +## WSL Updaten + +``` +# aktuelle Version anzeigen +wsl -l -v + +# Version ändern +wsl --set-version 2 + +# Updaten +wsl --update +``` + +## Virtualisierung Aktivieren + +``` +dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart +dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart +``` +