Skip to content

Commit a996b5c

Browse files
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 5aa19d6 commit a996b5c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Google Cloud. To install the latest nightly package, please use the following
4545
command:
4646

4747
```bash
48-
pip install -i https://pypi-nightly.tensorflow.org/simple tensorflow-data-validation
48+
pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple tensorflow-data-validation
4949
```
5050

5151
This will install the nightly packages for the major dependencies of TFDV such

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@
542542
following command:
543543

544544
```
545-
pip install -i https://pypi-nightly.tensorflow.org/simple tensorflow-data-validation
545+
pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple tensorflow-data-validation
546546
```
547547
548548
Note: These nightly packages are unstable and breakages are likely to

g3doc/install.md

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

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

5353
This will install the nightly packages for the major dependencies of TFDV such

0 commit comments

Comments
 (0)