Install and manage Python locally (Windows, macOS, Linux) using official installers, system packages, or pyenv; create virtual environments.
π§Ύ Overview
Python is used for bots, APIs, automation, scripting, and data tasks. Local installation allows you to install dependencies and test before deploying to Discloud.
If your distribution uses python3 invoke that instead of python.
π Virtual Environments
What it is: A virtual environment is an isolated directory tree containing its own Python interpreter and installed packages, separate from your global (system) Python.
Why use it:
Keeps project dependencies isolated (one project can use requests==2.31, another requests==2.29).