Skip to content

Installation

ipyvizzu-story requires the ipyvizzu package.

Info

ipyvizzu-story requires and downloads the Vizzu JavaScript/C++ library and the Vizzu-Story JavaScript package from jsDelivr CDN, but you can also use a different or self-hosted version of them. Check Initialization chapter for more details.

pypi

Run the following command to install ipyvizzu-story from pypi

pip install ipyvizzu-story

and this is how to upgrade it.

pip install -U ipyvizzu-story

You can use ipyvizzu-story in Jupyter/IPython, Streamlit, Panel or Python (see Environments chapter for more details).

Jupyter/IPython

You can install ipyvizzu-story in your notebook without using the command line by entering the following code into a cell.

!pip install ipyvizzu-story

If you want to install Jupyter/IPython as a dependency, install ipyvizzu-story with the following command.

pip install ipyvizzu-story[jupyter]

Streamlit

If you want to install Streamlit as a dependency, install ipyvizzu-story with the following command.

pip install ipyvizzu-story[streamlit]

Panel

If you want to install Panel as a dependency, install ipyvizzu-story with the following command.

pip install ipyvizzu-story[panel]

conda / mamba

Installing ipyvizzu-story from conda-forge can be achieved by adding conda-forge to your channels with:

conda config --add channels conda-forge
conda config --set channel_priority strict

Once the conda-forge channel has been enabled, run the following command to install ipyvizzu-story from conda

conda install ipyvizzu-story

# or with mamba:

mamba install ipyvizzu-story

and this is how to upgrade it.

conda update ipyvizzu-story

# or with mamba:

mamba update ipyvizzu-story