Installation

Requirements

  • Python 3.10 or higher

  • Access to a Kubernetes cluster (for Kubernetes backend)

Install from PyPI

pip install kubeflow

Optional Dependencies

For Docker container backend:

pip install kubeflow[docker]

For Podman container backend:

pip install kubeflow[podman]

Install from Source

git clone https://github.com/kubeflow/sdk.git
cd sdk
pip install -e .

Verify Installation

import kubeflow
print(kubeflow.__version__)

Next Steps

Continue to Quickstart to run your first training job.