venv prerequisites linuxwindows make sure you've... installed python aptpacman sudo apt install -y python3-pip sudo pacman -S --noconfirm python-pip libffi make sure you've... installed python winget install -eh --Python.Launcher winget install -eh --Python.Python.$VERSION # (1)! $VERSION is the most recent python release (e.g. 3.12) creating a venv make sure you've... updated the global pip manifest 1python -m venv .venv --update-deps activating a venv make sure you've... created a venv bashpowershell 1source .venv/Scripts/activate 1.\.venv\Scripts\Activate.ps1 deactivating a venv make sure you've... activated a venv 1deactivate resources venv — Creation of virtual environments