A2oz

How Do I Update to WSL 2?

Published in Operating Systems 1 min read

To update to WSL 2, you need to ensure your Windows system meets the requirements and then follow these steps:

1. Check System Requirements:

  • Windows Version: You need Windows 10 Build 19041 or later (version 2004 or newer).
  • Virtualization Enabled: Enable virtualization in your BIOS settings.
  • WSL 2 Features: Make sure your Windows system has WSL 2 features enabled. You can check this by typing wsl --version in your command prompt or PowerShell.

2. Update to WSL 2:

  • Open PowerShell: As an administrator.
  • Run the command: wsl --set-default-version 2

3. Restart your computer:

  • This ensures the changes take effect properly.

4. Verify the Update:

  • Open PowerShell: And type wsl --version. The output should now show WSL 2.

5. Install or Update Distributions:

  • Use the command: wsl --install -d Ubuntu to install a new distribution or update an existing one.

After updating to WSL 2, you can enjoy its improved performance and features. Remember to restart your computer for the changes to take effect.

Related Articles