Skip to content

Commit

Permalink
Fix wrong flag for Pypi nightly repository
Browse files Browse the repository at this point in the history
We should use `--extra-index-url` to specify extra index for Python packages, instead of `-i`.

PiperOrigin-RevId: 448149226
  • Loading branch information
Responsible ML Infra authored and Responsible ML Infra Team committed May 12, 2022
1 parent 4f78c62 commit 8b3c7cb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ https://pypi-nightly.tensorflow.org on Google Cloud. To install the latest
nightly package, please use the following command:

```bash
pip install -i https://pypi-nightly.tensorflow.org/simple fairness-indicators
pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple fairness-indicators
```

This will install the nightly packages for the major dependencies of Fairness
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
the following command:

```
pip install -i https://pypi-nightly.tensorflow.org/simple fairness-indicators
pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple fairness-indicators
```
Note: These nightly packages are unstable and breakages are likely to
Expand Down
2 changes: 1 addition & 1 deletion tensorboard_plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ https://pypi-nightly.tensorflow.org on Google Cloud. To install the latest
nightly package, please use the following command:

```bash
pip install -i https://pypi-nightly.tensorflow.org/simple tensorboard-plugin-fairness-indicators
pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple tensorboard-plugin-fairness-indicators
```

This will install the nightly packages for the major dependencies of Tensorboard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
the following command:

```
pip install -i https://pypi-nightly.tensorflow.org/simple tensorboard-plugin-fairness-indicators
pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple tensorboard-plugin-fairness-indicators
```
Note: These nightly packages are unstable and breakages are likely to
Expand Down

0 comments on commit 8b3c7cb

Please sign in to comment.