Python is required for most Data Science and backend projects. Follow these steps for a clean installation.
- Download Python 3.8 or newer from python.org. Choose the installer for your OS.
- Run the installer. Enable "Add Python to PATH" so the command is available in the terminal.
- Verify: open a terminal and run
python --version(orpython3 --versionon Linux/macOS). - Install project dependencies from the project root:
pip install -r requirements.txt(usepip3if needed).
For virtual environments (recommended): python -m venv venv, then activate and run pip install -r requirements.txt.