Skip to main content

Pythons Basics

Installation​

Install Python on Windows from Chocolatey. This command will install Python on your system.

choco install python

Dipslay the current version

python --version

Create virtual env

python -m venv .venv

Activate virtual env

.venv\Scripts\activate

Install requirements from file

pip install -r requirements.txt