We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
No branches or pull requests
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: