win10安装wsl

1.打开开发人员选项

2.powershell执行下面命令

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

3.alt+s 搜索store,打开microsoft store,搜索ubuntu,我们选择lts18.04

4.更换ubuntu源,比如阿里源,百度搜索到对应的源

阿里巴巴开源镜像站-OPSX镜像站-阿里云开发者社区阿里巴巴开源镜像站,免费提供Linux镜像下载服务,拥有Ubuntu、CentOS、Deepin、MongoDB、Apache、Maven、Composer等多种开源软件镜像源,此外还提供域名解析DNS、网络授时NTP等服务,致力于为互联网用户提供全面,高效和稳定的基础服务。https://developer.aliyun.com/mirror/

找到对应的版本,

vim /etc/apt/source.list

更新源信息

apt-get update

5.可以安装一些常用软件

apt-get install git vim make cmake

如果使用vscode 开发,可以安装wsl插件,coderunner c/c++几个插件即可

wsl安装后,就可以在左下角找到一个切换符号,可以切换到远程

你可能感兴趣的:(开发环境,vscode)