---
metadata:
  - name: generator
    content: Diplodoc Platform v5.52.0
alternate:
  - https://catboost.ai/docs/en/installation/python-installation-additional-data-visualization-packages.md
  - href: en/installation/python-installation-additional-data-visualization-packages.md
    type: text/markdown
    title: Markdown version
  - href: ../llms.txt
    type: text/markdown
    title: llms.txt
---
> **Documentation Index:** Fetch the complete configuration index at https://catboost.ai/docs/en/llms.txt

# Additional packages for data visualization support

Execute the following steps to support the data visualization feature in Jupyter Notebook:
1. Install the `ipywidgets`Python package (version 7.x or higher is required):

    {% list tabs %}

    - Using pip
        ```no-highlight
        pip install ipywidgets
        ```

    - Using conda
        ```no-highlight
        conda install -c conda-forge ipywidgets
        ```

    {% endlist %}

    {% note warning %}

    The visualization of previously created documents does not work after updating to ipywidgets 7.x. Perform the following steps to make the old contents work:
    1. Create a new Jupyter document. The file name must differ from the old one.
    1. Paste the contents of the old file to the new one.
    1. (Optionally) Refresh the Notebook page and restart the kernel if the visualization does not work.

    {% endnote %}

1. Turn on the widgets extension:

    ```no-highlight
    jupyter nbextension enable --py widgetsnbextension
    ```

