Installing
Contents
Installing¶
You can install dask-kubernetes with pip
, conda
, or by installing from source.
Dependencies¶
To use KubeCluster
you may need to have kubectl
installed (official install guide).
To use HelmCluster
you will need to have helm
installed (official install guide).
Pip¶
Pip can be used to install dask-kubernetes and its Python dependencies:
pip install dask-kubernetes --upgrade # Install everything from last released version
Conda¶
To install the latest version of dask-kubernetes from the conda-forge repository using conda:
conda install dask-kubernetes -c conda-forge
Install from Source¶
To install dask-kubernetes from source, clone the repository from github:
git clone https://github.com/dask/dask-kubernetes.git
cd dask-kubernetes
python setup.py install
or use pip
locally if you want to install all dependencies as well:
pip install -e .
You can also install directly from git main branch:
pip install git+https://github.com/dask/dask-kubernetes