Skip to content

Commit b6a2b24

Browse files
tf-transform-teamtfx-copybara
authored andcommitted
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 522a0be commit b6a2b24

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
@@ -68,7 +68,7 @@ Google Cloud. To install the latest nightly package, please use the following
6868
command:
6969

7070
```bash
71-
pip install -i https://pypi-nightly.tensorflow.org/simple tensorflow-transform
71+
pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple tensorflow-transform
7272
```
7373

7474
This will install the nightly packages for the major dependencies of TFT such

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@
486486
following command:
487487

488488
```
489-
pip install -i https://pypi-nightly.tensorflow.org/simple tensorflow-transform
489+
pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple tensorflow-transform
490490
```
491491
492492
Note: These nightly packages are unstable and breakages are likely to

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ TFT also hosts nightly packages at https://pypi-nightly.tensorflow.org on Google
6464
Cloud. To install the latest nightly package, please use the following command:
6565

6666
```
67-
pip install -i https://pypi-nightly.tensorflow.org/simple tensorflow-transform
67+
pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple tensorflow-transform
6868
```
6969

7070
This will install the nightly packages for the major dependencies of TFT such as

0 commit comments

Comments
 (0)