Proposed param: venv
Depends on param: install
Overview: Allow users to create a default virtual environment to quickly get up-and-running the "right" way.
pipN.NN install virtualenv
cd /opt/pythonN.NN
pythonN.NN -m virtualenv venv
Challenge: Which tool to use to create virtual environments seems hotly debated. The legacy default (< python3.3, including python2) is virtualenv, but new versions (>= python3.3) have native support for venv. Other virtual environment tools (pipenv, pyenv, vitualenvwrapper, etc.) exist and there are many long threads scattered across Github about which is best.