Open PowerShell with Admin rights and run wsl --install -d Ubuntu-24.04
.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
RELEASE="latest" | |
OS="$(uname -s)" | |
case "${OS}" in | |
MINGW* | Win*) OS="Windows" ;; | |
esac |