To re-iterate. When we run this;
jupyter lab
then we are technically at risk of launching the wrong jupyter lab reference
even when pip freeze
suggests we've installed it in our virtualenv. It
can therefore be much safer to run this instead;
python -m jupyter lab
This way we don't fail silently anymore.