Calmcode - virtualenv: good fixes

Good Fixes

1 2 3 4 5 6 7 8 9 10

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.