Installation

To install all Clara Viz packages, use pip:

Copy
Copied!
            

$ 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:

Copy
Copied!
            

$ 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:

Copy
Copied!
            

$ pip install clara-viz-core[itk]

To install all optional dependencies for clara-viz-core with pip:

Copy
Copied!
            

$ pip install clara-viz-core[all]

The options are

Copy
Copied!
            

[itk, numpy, cucim]

which correspond to itk-io, numpy and cucim, respectively.

© Copyright 2021-2022, NVIDIA Corporation and affiliates. Last updated on Mar 31, 2022.