I have a local virtualenv (venv) that was activated.
My script executes another script using subprocess.call(), but that causes the new script to be executed outside of the virtualenv.
Is there any way to execute another process but keep it inside the virtualenv?
EDIT: I don't it's a duplicate of the given links since I assume it is possible to avoid reactivating the virtualenv, and can somehow "stay within it"