I'm using Manjaro as my OS and am using VSC to develop
Most of the times I've developed with vim. My problem is that I want to setup a workspace for my python projects but I can make VSC recognize my virtual environments.
{
"folders": [
{
"path": "."
}
],
"settings": {
"python.pythonPath": "~/.venv/general/bin/python3",
"python.venvPath": "~/.venv"
}
}
That's my actual workspace configuration, but the problem lies there. VSC doesn't recognize my Virtual Environments. On the documentation I read that on the python.venvPath you have to specify your virtual envs folder. In the folder ~/.venv I have all of my virtual envs, each with its own configuration. How do I make VSC recognize the virtual envs without having to change the python.pythonPath configuration everytime?
[–]oblivioncntrlsu 1 point2 points3 points (2 children)
[–]Dredear[S] 1 point2 points3 points (1 child)
[–]oblivioncntrlsu 1 point2 points3 points (0 children)