After delving into Python for a while, I got a bit sick of constantly looking up, typing out, and then forgetting how to initiate and then activate venv
... so I wrote a little alias for my .bashrc
alias mkvenv='python3 -m venv venv'
alias venv='source venv/bin/activate'