A beginner's guide to installing Python 3 and setting up a virtual environment
This guide covers how to install and upgrade Python 3 and how to create and an install into a Python virtual environment.
This is best practice in Python for both local and production code, as it isolates the scope where your python
commands and pip
commands run, protecting your global environment and allowing your to manage multiple virtual environments each with their own set of unique Python packages.