You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 3, 2024. It is now read-only.
https://xqm32.github.io/posts/wsl-vscode/
此前笔者已经写过一篇配置 WSL - VS Code 开发流配置相关的文章,然而微软给出了更加方便地配置方法,所以这里也给出配置的优化。
安装 WSL 由于微软的优化,现在我们只需要在 Powershell 中输入:
wsl --install 即可完成 Windows Subsystem for Linux 的安装,此命令会附加安装一个 Ubuntu 发行版,因而亦不需要在 Microsoft Store 中再次下载。
更换 WSL 的镜像源 国内访问 Ubuntu 的默认软件源速度较慢,因而我们需要更换一个镜像源以加快软件源的访问速度。这里以 USTC 的镜像源为例,只需在 WSL 终端中输入:
sudo sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list 即可完成换源。
更新软件包 在 WSL 终端中输入:
sudo apt update sudo apt upgrade 即可更新。
其他 余下的步骤可以参考笔者之前的文章。
The text was updated successfully, but these errors were encountered: