Installation¶
Install Pipelime using pip:
pip install pipelime-python
To be able to draw the dataflow graphs, you need the draw variant:
pip install pipelime-python[draw]
Warning
The draw variant needs Graphviz https://www.graphviz.org/ 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 https://github.com/pygraphviz/pygraphviz/blob/main/INSTALL.txt
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.