Personal development environment for Windows and Unix-based systems (WSL/Linux/MacOS).
-
Open PowerShell
-
Install WSL2:
wsl.exe --install
List the available Linux distros: wsl.exe --list --online
-
Open PowerShell
-
List all distros:
wsl.exe --list --verbose
-
Unregister (destroy) distro:
wsl --unregister <Distro, e.g: Ubuntu>
Automates the installation of essential dev tools and GUI applications using PowerShell.
Usage:
Set-ExecutionPolicy Bypass -Scope Process -Force; .\scripts\init.ps1Make sure you are running PowerShell as Administrator before running the script!
Automates the installation of essential dev tools and GUI applications using apt or Homebrew, depending on your OS.
Usage:
sudo chmod +x scripts/init.sh && ./scripts/init.sh