Reputation: 41
I have the Linux subsystem enabled on my Windows 10 laptop, and I'm using Debian I was able to use Cygwin as VS Code's integrated terminal, with the help of this guide:
VS Code - Cygwin as Integrated Terminal
But I'm using OpenCV in some of my projects, and installing it on Cygwin is pretty tricky AFAIK. Can I use Debian's terminal as VS Code's integrated terminal? Thanks
Upvotes: 2
Views: 1356
Reputation: 4008
If you enabled Bash On Windows (WSL console) you should, with this config, be able to have the bash as VScode terminal:
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\bash.exe",
Upvotes: 3