VSCode Terminal Python Can Not Activate Conda on Mac
Enable your key repeat in vscode on mac
In some versions of vscode, the built-in terminal does’t use conda python. Instead it uses the system python. It does’t matter what bash/zsh config you set. Conda just doesn’t activate.
To fix this issue, add the config terminal.integrated.env.osx
to .vscode/settings.json
to fix the problem.
{
"terminal.integrated.env.osx": {
"PATH": ""
},
}
Planted:
by Lei Ma;
Similar Articles:
L Ma (2021). 'VSCode Terminal Python Can Not Activate Conda on Mac', Datumorphism, 08 April. Available at: https://datumorphism.leima.is/til/misc/vscode/vscode-terminal-python-not-conda-mac/.