wsl kernel version too low
时间: 2024-06-08 19:04:50 浏览: 127
To resolve the "WSL kernel version too low" issue, you need to update your Windows Subsystem for Linux (WSL) kernel. Here's how you can do it:
1. Open PowerShell as an administrator.
2. Run the following command to download the latest WSL kernel update package:
```
Invoke-WebRequest -Uri https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi -OutFile "$env:temp\wsl_update_x64.msi"
```
3. Install the downloaded package by running the following command:
```
Start-Process -Wait -FilePath msiexec.exe -ArgumentList "/i $env:temp\wsl_update_x64.msi /qn"
```
4. Restart your computer to complete the installation.
After restarting, your WSL kernel should be updated to the latest version. You can then try running your WSL distribution again without encountering the "WSL kernel version too low" error.
阅读全文