There are many answers on SO about how to use a virtual environment inside a makefile. This is not what I am asking.
I have a makefile that creates a virtual environment for the user and does a series of installs. At the end of the script's running, I would like to leave the caller inside the virtual environment. Why? Because it is easy to forget to activate when in a rush and install subsequent libraries into the os-python.
What have I tried? I've looked at as many of the SO answers I could find on the subject, such as this, and this. All seem to deal with using the venv inside Make, but none tell me (as far as I can tell) how to leave a user inside the virtual environment.
Specifically, I want the equivalent of this;
make install #creates a virtual environment
source venv/bin/activate
(venv) prompt:>