On Mon, Jan 4, 2021 at 2:53 PM Calvin Spealman <cspealma@redhat.com> wrote:

This is true, but...
it might be possible to include something more like pipenv's "shell" which spawns a new instance of your shell with the right paths. It effectively achieves the same goal, without needing to source,


There is this: https://pypi.org/project/venv-run/#calling-executables that allows the following invocation:

$  venv-run bash

Which appears to do what you wish.

Steve