some install instructions

This commit is contained in:
Luca Conte 2025-03-05 22:00:55 +01:00
parent f5020cf326
commit 2389aa6b94
1 changed files with 30 additions and 1 deletions

View File

@ -1 +1,30 @@
# Computer Grafik 1 # 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 <distro-name> 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
```