I have a virtual env. Name it test-venv.
python3 -m venv test-venv
source test-venv/bin/activate
After that my bash session is working with the venv activated.
I would like to put that in a make command.
Makefile
evenv: # Enter test-venv
source test-venv/bin/activate
My problem is that, I guess another bash session is created when I execute a make target, so when the target execution finish, I am not longer in the venv.
How can I achieve this, if it is possible?