Download and install the latest stable Python 3.14 from:
https://www.python.org/downloads/
Important
Windows: during installation, check “Add Python to PATH” on the first screen.
Open a terminal (Command Prompt / PowerShell / Terminal) and run:
python --version
# On macOS/Linux you may need: python3 --versionpip --version
# If this fails, try: python -m pip --versionPython was not added to PATH. Reinstall Python and check Add to PATH, or add it manually.
Use:
python -m pip --version
# Use pip via python -mYou can any IDE/code editor. VS Code is preferred
- Lightweight and popular for Python development
- Works great with virtual environments
Important
Regardless of IDE, always make sure it uses the Python interpreter
from your .venv (the respective virtual environment).
Git, download and install Git Version Control
SQLite requires no server setup. Python includes sqlite3 by default.
If you want PostgreSQL locally, install it from:
https://www.postgresql.org/download/
Python driver for PostgreSQL:
python -m pip install psycopg2-binaryor
pip install psycopg2-binaryAn account at azure is needed
Create a Github account