How to create the venv — virtual environments on windows and mac June 13, 2025 # macOS/Linux # You may need to run 'sudo apt-get install python3-venv` first on Debian-based OSS python3 -m venv .venv # Windows # You can also use `py -3 -m venv .venv python -m venv .venv Read more