Lets Learn Python

Setup

Setup a virtual environment in your project's root directory

$ python3 -m venv "./<env-name>"

If you have multiple versions of python 3 installed, use the version you want the environment for explicitly

$ python3.9 -m venv "./<env-name>"

Start your environment

$ .\<env-name>\Scripts\Activate.ps1