Skip to content

Commit

Permalink
Update MacOS known issues in the install docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fteicht authored and g-poveda committed Apr 26, 2024
1 parent 26c7d55 commit b17ec00
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit b17ec00

Please sign in to comment.