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 @@ -108,7 +108,7 @@ RUN if [ "$JAX_VERSION" = "newest" ]; then \
# 4. Install Orbax from Source
WORKDIR /app/orbax_repo/checkpoint
RUN pip install --no-cache-dir .
RUN pip install pathwaysutils tensorboard cloudpickle
RUN pip install "pathwaysutils>=0.1.10" tensorboard cloudpickle

# 5. Environment Setup
# Set PYTHONPATH so 'import orbax' works from the correctly mapped directory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,10 @@ RUN if [ -f "requirements.txt" ]; then pip install --no-cache-dir -r requirement
# 4. Install Orbax from Source
WORKDIR /app/orbax_repo/checkpoint
RUN pip install --no-cache-dir .
RUN pip install pathwaysutils tensorboard cloudpickle gcsfs
RUN pip install "pathwaysutils>=0.1.10" tensorboard cloudpickle gcsfs

# Ensure Orbax are in PYTHONPATH
ENV PYTHONPATH=/app/orbax/checkpoint

# Verify installation
RUN python3 -c "import orbax.checkpoint; print('Orbax installed:', orbax.checkpoint.__file__)"

Loading