From b17ec00c2280cb07230798950eafb1cefabf502b Mon Sep 17 00:00:00 2001 From: Florent Teichteil-Koenigsbuch Date: Wed, 24 Apr 2024 08:52:29 +0200 Subject: [PATCH] Update MacOS known issues in the install docs --- docs/install.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/install.md b/docs/install.md index 12231b46ac..52fd74510c 100644 --- a/docs/install.md +++ b/docs/install.md @@ -130,7 +130,13 @@ pip install -U scikit-decide When installing [pygrib](https://jswhit.github.io/pygrib/index.html) on MacOS ARM (in dependencies of `scikit-decide[all]`), no wheel exists on PyPI and there is issues when pip tries to build it. -You can overcome this by installing the pygrib package available on conda-forge: +You can overcome this by first installing `eccodes` which provides GRIB header files required to build the `pygrib` wheel: +```shell +brew install eccodes +``` +Then, reinstall `scikit-decide[all]` with pip. + +If the issue persists, you can try to install the pygrib package available on conda-forge: ```shell conda install -c conda-forge pygrib ```