Create a virtual environment with Python's venv on Windows
Have python installed / install python
Create virtual environment In windows run from console (cmd)
python -m venv venv
Activate virtual environment
venv\Scripts\activate
Then Install packages, e.g. Django
pip install django