如若在你在运行某些项目是用linux开发,而你想在windows上跑的话,这时WSL的作用就来了。
先来介绍一下,什么是WSL
Windows Subsystem for Linux(WSL)是由微软开发的功能,允许在 Windows 10 和 Windows Server 2019 系统上运行本地 Linux 环境。WSL 提供了用户可以在其系统上运行一些常见的 Linux 发行版,如 Ubuntu、Debian、Fedora 等,以及访问 Linux 命令行工具和应用程序的能力,而无需虚拟机或双引导系统。
在你的项目运行期间,假如要运行.sh文件,需要使用到WSL,使用命令bash后若出现以下报错。
<3>WSL (19) ERROR: CreateProcessEntryCommon:505: execvpe /bin/bash failed 2
<3>WSL (30) ERROR: CreateProcessEntryCommon:583: Create process not expected to return
则说明你的文件路径可能有问题,用不了bash。那我们换一种思路。
通过power shell来。输入wsl -l -v命令
接着,通过wsl -d Ubuntu,打开Ubuntu子系统。同样你也可以在你的项目Vscode里的终端输出。
大致思路如此~