I'm using Visual studio (not "code") to debug python projects, my problem is that a project contains a sh script wrote for linux that needs to be run. Visual studio offers only the "run in powershell" command, however powershell doesn't work with cygwin, and command prompt does. I tried to run the command prompt from myself but I can't activate the python virtual environment that visual studio is using, I have a permission denied.
H:\git\someproject>H:\git\someproject\MYVENV\Scripts\python.exe -m venv MYVENV
Error: [Errno 13] Permission denied: 'H:\\git\\someproject\\MYVENV\\Scripts\\python.exe'
Then, isn't there an option to use command prompt instead of powershell ?
