如何在没有Windows Store的情况下安装WSL?

时间:2019-11-25 11:02:13

标签: windows-10 windows-subsystem-for-linux

我有windown 10企业版,我发现此版本没有Windows存储 如何使用ubuntu安装linux子系统(WSL)?

1 个答案:

答案 0 :(得分:0)

找到了使用powershell的解决方案!

参考

PowerShell作为管理员

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux

cd c:\

Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile Ubuntu.appx -UseBasicParsing

Rename-Item ./Ubuntu.appx ./Ubuntu.zip
Expand-Archive ./Ubuntu.zip ./Ubuntu

cd ./Ubuntu

.\ubuntu1604.exe

$userenv = [System.Environment]::GetEnvironmentVariable("Path", "User")
[System.Environment]::SetEnvironmentVariable("PATH", $userenv + ";C:\Ubuntu", "User")