# Installation
Install Pipelime using pip:
```bash
pip install pipelime-python
```
To be able to *draw* the dataflow graphs, you need the `draw` variant:
```bash
pip install pipelime-python[draw]
```
```{warning}
The `draw` variant needs `Graphviz` installed on your system.
On Linux Ubuntu/Debian, you can install it with:
sudo apt-get install graphviz graphviz-dev
Alternatively you can use `conda`:
conda install --channel conda-forge pygraphviz
Please see the full options at
```
# Example Data
Throughout the documentation, we will refer to the `mini_mnist` dataset when loading data from disk.
You can find it in the `examples/fake_repo/datasets` folder.