• python -m venv env
    .\env\Scripts\activate
![[Pasted image 20230428182333.png]]

> python -m pip install --upgrade pip

- Why is there always -m added before some of the commands? When creating venv, upgrading pip, python -m http.server, I guess -m is to call a #module of python.