-
i have successfully install wsl in my windows but when opening the terminal in vscode I am facing this issue
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello @Shiv2116
so for example you can open the WSL terminal, create a folder for your project |
Beta Was this translation helpful? Give feedback.
Hello @Shiv2116
the reason is because the communication between the folder paths form WSL and Windows is tricky, and also slower.
I just Highly recommend you to keep your project folders on your WSL instance, if you are not familiarized with UNIX command lines use this as reference:
mkdir
to create a new folder.cd
to navigate between folders.ls
to see the contents of a folder.so for example you can open the WSL terminal, create a folder for your project
mkdir folderName
, then navigate to itcd folderName
, and finally open vscode inside of it usingcode .
.