🧙
Installation
Installing ZenML and getting started.
ZenML is a Python package that can be installed directly via
pip
:pip install zenml
Note that ZenML currently supports Python 3.8, 3.9, 3.10, and 3.11. Please make sure that you are using a supported Python version.
ZenML comes bundled with a web dashboard that lives inside a sister repository. In order to get access to the dashboard locally, you need to launch the ZenML Server and Dashboard locally. For this, you need to install the optional dependencies for the ZenML Server:
pip install "zenml[server]"
We highly encourage you to install ZenML in a virtual environment. At ZenML, We like to use virtualenvwrapper or pyenv-virtualenv to manage our Python virtual environments.
Once the installation is completed, you can check whether the installation was successful either through Bash:
zenml version
or through Python:
import zenml
print(zenml.__version__)
zenml
is also 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
If you would like to run the ZenML server with Docker:
docker run -it -d -p 8080:8080 zenmldocker/zenml-server

Last modified 7d ago