Skip to content

Commit 2b02621

Browse files
jacob.romerojacob.romero
jacob.romero
authored and
jacob.romero
committed
add version constraint to pip install command
1 parent 77760a9 commit 2b02621

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

content/guides/integrations/metaflow.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ For a more streamlined approach, you can generate an API key by going directly t
3434

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

37+
{{% alert %}}
38+
For wandbkversions <= 0.19.8, install `fastcore<1.8.0` instead of `plum-dispatch`:
39+
{{% /alert %}}
40+
41+
3742
{{< tabpane text=true >}}
3843
{{% tab header="Command Line" value="cli" %}}
3944

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

4954

5055
```shell
51-
pip install -Uqqq metaflow plum-dispatch wandb
56+
pip install -Uqqq metaflow "plum-dispatch<3.0.0" wandb
5257
5358
wandb login
5459
```
@@ -58,7 +63,7 @@ To install the `wandb` library locally and log in:
5863
{{% tab header="Python" value="python" %}}
5964

6065
```bash
61-
pip install -Uqqq metaflow plum-dispatch wandb
66+
pip install -Uqqq metaflow "plum-dispatch<3.0.0" wandb
6267
```
6368
```python
6469
import wandb
@@ -70,7 +75,7 @@ wandb.login()
7075
{{% tab header="Python notebook" value="notebook" %}}
7176

7277
```notebook
73-
!pip install -Uqqq metaflow plum-dispatch wandb
78+
!pip install -Uqqq metaflow "plum-dispatch<3.0.0" wandb
7479
7580
import wandb
7681
wandb.login()

0 commit comments

Comments
 (0)