Installation
To install all Clara Viz packages, use pip:
$ pip install clara-viz
Clara Viz uses namespace packages. The main functionality is implemented in the ‘clara-viz-core’ package, Jupyter Notebook widgets are found in the ‘clara-viz-widgets’ package. So for example if you just need the renderer, use:
$ pip install clara-viz-core
By default, the installation step will only download and install the minimal requirements of clara-viz-core. Optional dependencies can be installed using the extras syntax to support additional features.
For example, to install Clara Viz with ITK IO support:
$ pip install clara-viz-core[itk]
To install all optional dependencies for clara-viz-core with pip:
$ pip install clara-viz-core[all]
The options are
[itk, numpy, cucim]
which correspond to itk-io, numpy and cucim, respectively.