From b849683139e0799d61e318bc98b07eafad9e68a8 Mon Sep 17 00:00:00 2001 From: Ben Moss Date: Mon, 8 Jan 2024 10:35:08 -0500 Subject: [PATCH] Add instructions for gnu coreutils on OSX (#3111) Fixes #3110 Co-authored-by: Ben Moss --- docs/source/developer_zone/dev_environment.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/source/developer_zone/dev_environment.rst b/docs/source/developer_zone/dev_environment.rst index fbd2070e15..c5f3a5f8f8 100644 --- a/docs/source/developer_zone/dev_environment.rst +++ b/docs/source/developer_zone/dev_environment.rst @@ -35,6 +35,13 @@ You can follow the installation instructions there, or install it via `conda-for micromamba create -n mamba -c conda-forge go-task micromamba activate -n mamba +If you're running on an OSX machine, you'll need to install GNU coreutils as well for the Taskfile to work. + +.. code:: bash + + micromamba create -n mamba -c conda-forge go-task coreutils + micromamba activate -n mamba + Running commands ****************