From 3f29ccf909eb4b417f3d0599433894e6e0e7562d Mon Sep 17 00:00:00 2001 From: Joel Ostblom Date: Mon, 18 Mar 2024 12:19:28 -0700 Subject: [PATCH] Add note about conda "all" installation and how to install without optional dependencies --- doc/getting_started/installation.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/getting_started/installation.rst b/doc/getting_started/installation.rst index 35e3c3ce6..86a124a01 100644 --- a/doc/getting_started/installation.rst +++ b/doc/getting_started/installation.rst @@ -5,7 +5,7 @@ Installation ============ -Altair can be installed, along with the example datasets in vega_datasets_, using: +Altair can be installed, along with all its optional dependencies, using: .. code-block:: bash @@ -15,12 +15,14 @@ If you are using the conda_ package manager, the equivalent is: .. code-block:: bash - conda install -c conda-forge altair vega_datasets + conda install -c conda-forge altair-all -At this point, you should be able to open `Jupyter Notebook`_ or `JupyterLab`_ +At this point, you should be able to open any IDE compatible with Jupyter Notebooks, and execute any of the code from the :ref:`example-gallery`. For more information on how to display charts in various notebook environments and non-notebook IDEs, see :ref:`displaying-charts`. +If you wish to install Altair with only the required dependencies, +you can omit the ``[all]``/``-all`` suffix. Development Installation ========================