Once the installation is completed, you can check whether the installation was successful through:
Bash
zenml version
Python
import zenml
print(zenml.__version__)
If you would like to learn more about the current release, please visit ourPyPi package page.​
Running with Docker
zenml is available as a docker image hosted publicly on DockerHub. Use the following command to get started in a bash environment with zenml available:
docker run -it zenmldocker/zenml /bin/bash
Enabling auto-completion on the CLI
For Bash, add this to ~/.bashrc:
eval"$(_ZENML_COMPLETE=source_bash zenml)"
For Zsh, add this to ~/.zshrc:
eval"$(_ZENML_COMPLETE=source_zsh zenml)"
For Fish, add this to ~/.config/fish/completions/foo-bar.fish: