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

Fix #1960: defaults should not be used with conda-forge #2181

Merged
merged 2 commits into from
Jan 19, 2023
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
14 changes: 14 additions & 0 deletions docs/source/user_guide/troubleshooting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,20 @@ No other packages should be installed to ``base``

Installing packages other than Conda and Mamba into the ``base`` environment is not supported. Mamba must live in the same environment as Conda, and Conda does not support having packages other than Conda itself and its dependencies in ``base``.

Mixing the ``defaults`` and ``conda-forge`` channels
----------------------------------------------------

Using the ``defaults`` and ``conda-forge`` channels at the same time is not supported, eg. using a channel configuration like this:

.. code-block:: yaml

# NOT supported!
channels:
- conda-forge
- defaults

The `Anaconda default channels <https://docs.anaconda.com/anaconda/user-guide/tasks/using-repositories/>`_ are incompatible with conda-forge.

Mamba broken after Conda update
-------------------------------

Expand Down