WSL介绍
适用于 Linux 的 Windows 子系统 (WSL) 是 Windows 的一项功能,可用于在 Windows 计算机上运行 Linux 环境,而无需单独的虚拟机或双引导。 WSL 旨在为希望同时使用 Windows 和 Linux 的开发人员提供无缝高效的体验。
启用wsl
windows WSL安装使用 ubantu
在Windows上安装并使用CentOS 7通过WSL(Windows Subsystem for Linux)的步骤如下:
1、确保你的Windows系统支持WSL。你需要Windows 10 更新版本 1607 或更高版本。
2、启用WSL功能:
打开Cmd或PowerShell(管理员)
运行以下命令启用WSL:
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
重启电脑安装Linux子系统更新包:
3、安装Linux子系统更新包:
打开Cmd或PowerShell(管理员)
运行以下命令安装更新包:
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
重启电脑
下载并安装Ubantu
1、查看列表
wsl --list --online
2、安装版本
wsl --install -d? Ubuntu-24.04
3、启动Ubuntu并设置用户和密码
用户名和win相同
密码建议也相同
4、开始查看
5、此后就可以使用 如安装python虚拟环境 linux下应用等
参考
https://learn.microsoft.com/zh-cn/windows/wsl/basic-commands