I have been stuck on this one problem for hours now and believe I have tried everything outside of throwing my computer out of the window.
I have a virtual environment s
I have been facing the exact same problem. Finally found a workaround from a forum (https://github.com/Microsoft/vscode-python/issues/4434#issuecomment-466600591)
As long as you ADD some stuff to configuration, terminal.integrated.env.osx
, the content will be appended to PATH
after shell initialization(source bash_profile or zshrc). In my Mojave, I simply add following empty entry to my user configuration:
"terminal.integrated.env.osx": {
"PATH": ""
}
Then the $PATH
will be the same as the external terminal.