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

chore: update references for installing fastcore to plum-dispatch for metaflow integration. #1199

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
11 changes: 8 additions & 3 deletions content/guides/integrations/metaflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ For a more streamlined approach, you can generate an API key by going directly t

To install the `wandb` library locally and log in:

{{% alert %}}
For wandb versions <= 0.19.8, install `fastcore<1.8.0` instead of `plum-dispatch`:
{{% /alert %}}


{{< tabpane text=true >}}
{{% tab header="Command Line" value="cli" %}}

Expand All @@ -48,7 +53,7 @@ To install the `wandb` library locally and log in:


```shell
pip install -Uqqq metaflow fastcore wandb
pip install -Uqqq metaflow "plum-dispatch<3.0.0" wandb

wandb login
```
Expand All @@ -58,7 +63,7 @@ To install the `wandb` library locally and log in:
{{% tab header="Python" value="python" %}}

```bash
pip install -Uqqq metaflow fastcore wandb
pip install -Uqqq metaflow "plum-dispatch<3.0.0" wandb
```
```python
import wandb
Expand All @@ -70,7 +75,7 @@ wandb.login()
{{% tab header="Python notebook" value="notebook" %}}

```notebook
!pip install -Uqqq metaflow fastcore wandb
!pip install -Uqqq metaflow "plum-dispatch<3.0.0" wandb

import wandb
wandb.login()
Expand Down