Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ imageio
jax
jaxlib
jaxopt
libtpu>=0.0.42.1
Jinja2
opencv-python-headless
optax
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ keras>=3.13.1
kiwisolver>=1.4.9
lazy-loader>=0.5
libclang>=18.1.1
libtpu>=0.0.34 ; platform_machine == 'x86_64' and sys_platform == 'linux'
libtpu>=0.0.42.1 ; platform_machine == 'x86_64' and sys_platform == 'linux'
markdown-it-py>=4.0.0
markdown>=3.10.1
markupsafe>=3.0.3
Expand Down
14 changes: 12 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,18 @@ elif [[ $MODE == "nightly" ]]; then
python3 -m uv pip install --pre -U jax -f https://storage.googleapis.com/jax-releases/jax_nightly_releases.html
# Install jaxlib-nightly
python3 -m uv pip install --pre -U jaxlib -f https://storage.googleapis.com/jax-releases/jaxlib_nightly_releases.html
# Install libtpu-nightly
python3 -m uv pip install --pre -U libtpu-nightly -f https://storage.googleapis.com/jax-releases/libtpu_releases.html
# Install libtpu (clean up any conflicting libtpu_nightly if present)
python3 -m uv pip uninstall libtpu_nightly 2>/dev/null || true
if [[ -n "$LIBTPU_WHEEL_URL" ]]; then
echo "Installing custom libtpu from ${LIBTPU_WHEEL_URL}"
python3 -m uv pip install -U "${LIBTPU_WHEEL_URL}"
elif [[ -n "$LIBTPU_VERSION" ]]; then
echo "Installing libtpu version ${LIBTPU_VERSION}"
python3 -m uv pip install -U "libtpu==${LIBTPU_VERSION}"
else
echo "Installing verified libtpu (>=0.0.42.1)"
python3 -m uv pip install -U "libtpu>=0.0.42.1"
fi
fi
echo "Installing nightly tensorboard plugin profile"
python3 -m uv pip install tbp-nightly --upgrade
Expand Down
Loading