Skip to content

Commit 8b3c7cb

Browse files
Responsible ML InfraResponsible ML Infra Team
Responsible ML Infra
authored and
Responsible ML Infra Team
committed
Fix wrong flag for Pypi nightly repository
We should use `--extra-index-url` to specify extra index for Python packages, instead of `-i`. PiperOrigin-RevId: 448149226
1 parent 4f78c62 commit 8b3c7cb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ https://pypi-nightly.tensorflow.org on Google Cloud. To install the latest
4747
nightly package, please use the following command:
4848

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

5353
This will install the nightly packages for the major dependencies of Fairness

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@
261261
the following command:
262262

263263
```
264-
pip install -i https://pypi-nightly.tensorflow.org/simple fairness-indicators
264+
pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple fairness-indicators
265265
```
266266
267267
Note: These nightly packages are unstable and breakages are likely to

tensorboard_plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ https://pypi-nightly.tensorflow.org on Google Cloud. To install the latest
3636
nightly package, please use the following command:
3737

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

4242
This will install the nightly packages for the major dependencies of Tensorboard

tensorboard_plugin/tensorboard_plugin_fairness_indicators/RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@
250250
the following command:
251251

252252
```
253-
pip install -i https://pypi-nightly.tensorflow.org/simple tensorboard-plugin-fairness-indicators
253+
pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple tensorboard-plugin-fairness-indicators
254254
```
255255
256256
Note: These nightly packages are unstable and breakages are likely to

0 commit comments

Comments
 (0)