Skip to content

Commit 85add66

Browse files
committed
Change documentation to recommend libtpu from pypi instead of GCS.
1 parent 11b45a6 commit 85add66

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,8 +398,8 @@ Some standouts:
398398
|-----------------|-----------------------------------------------------------------------------------------------------------------|
399399
| CPU | `pip install -U jax` |
400400
| NVIDIA GPU | `pip install -U "jax[cuda12]"` |
401-
| Google TPU | `pip install -U "jax[tpu]" -f https://storage.googleapis.com/jax-releases/libtpu_releases.html` |
402-
| AMD GPU (Linux) | Follow [AMD's instructions](https://github.com/jax-ml/jax/blob/main/build/rocm/README.md). |
401+
| Google TPU | `pip install -U "jax[tpu]"` |
402+
| AMD GPU (Linux) | Follow [AMD's instructions](https://github.com/jax-ml/jax/blob/main/build/rocm/README.md). |
403403
| Mac GPU | Follow [Apple's instructions](https://developer.apple.com/metal/jax/). |
404404
| Intel GPU | Follow [Intel's instructions](https://github.com/intel/intel-extension-for-openxla/blob/main/docs/acc_jax.md). |
405405

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ different builds for different operating systems and accelerators.
2020

2121
* **TPU (Google Cloud TPU VM)**
2222
```
23-
pip install -U "jax[tpu]" -f https://storage.googleapis.com/jax-releases/libtpu_releases.html
23+
pip install -U "jax[tpu]"
2424
```
2525

2626
(install-supported-platforms)=
@@ -199,7 +199,7 @@ To install JAX along with appropriate versions of `jaxlib` and `libtpu`, you can
199199
the following in your cloud TPU VM:
200200

201201
```bash
202-
pip install "jax[tpu]" -f https://storage.googleapis.com/jax-releases/libtpu_releases.html
202+
pip install "jax[tpu]"
203203
```
204204

205205
For users of Colab (https://colab.research.google.com/), be sure you are

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def load_version_module(pkg_path):
7373
'ci': [f'jaxlib=={_latest_jaxlib_version_on_pypi}'],
7474

7575
# Cloud TPU VM jaxlib can be installed via:
76-
# $ pip install "jax[tpu]" -f https://storage.googleapis.com/jax-releases/libtpu_releases.html
76+
# $ pip install "jax[tpu]"
7777
'tpu': [
7878
f'jaxlib>={_current_jaxlib_version},<={_jax_version}',
7979
f'libtpu=={_libtpu_version}',

0 commit comments

Comments
 (0)