I have a python virtual environment declared in my workspace settings, everything is fine with it.
Now I have a build task that calls a make target whic
make
I tested with the following tasks.json and it works:
{ "version": "2.0.0", "tasks": [ { "label": "test", "type": "shell", "command": "source /home/me/.pyenvs/myenv/bin/activate; make" } ] }
First activate virtual environment and then executes make.