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

Update advice on installing conda-build #5223

Merged
merged 5 commits into from
Mar 12, 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
9 changes: 5 additions & 4 deletions docs/source/user-guide/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,17 @@ Prerequisites

Before starting the tutorials, you need to install:

- `Miniconda or Anaconda <https://docs.anaconda.com/anaconda/install/>`_
- `Miniconda <https://docs.anaconda.com/free/miniconda/>`_ or `Anaconda <https://docs.anaconda.com/free/anaconda/install/>`_
- conda-build
- Git

The most straightforward way to do this is to install Miniconda or
Anaconda, which contain conda, and then use conda to install conda-build
and Git. Make sure you install these packages into a new environment
and not your base environment.::
and Git. Make sure you install these packages into your base environment.::
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I assume one would have to still install Git into base, in order to have everything needed to follow the tutorial, yes?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would keep it, yeah.


conda create -n my-conda-build-environment conda-build git
conda install -n base conda-build git

For more information on installing and updating conda-build, see :doc:`Installing and updating conda-build <../install-conda-build>`.

.. _submissions:

Expand Down
Loading