Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note about conda "all" installation and how to install without optional dependencies #3373

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions doc/getting_started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
========================
Expand Down
Loading