Skip to content
Merged
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 @@ -91,3 +91,4 @@ python3 -m pip install --user virtualenv

# Disable the cache dir to save image space, and install packages
python3 -m pip install --no-cache-dir -r $REQUIREMENTS -U
python3 -m pip install --no-cache-dir --no-deps tf-keras==2.17.0rc0
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ python3 --version
echo "Install Requirements"
# Disable the cache dir to save image space, and install packages
python3 -m pip install --no-cache-dir -r $REQUIREMENTS -U
python3 -m pip install --no-cache-dir --no-deps tf-keras-nightly
python3 -m pip install --no-cache-dir --no-deps tf-keras==2.17.0rc0
4 changes: 2 additions & 2 deletions tensorflow/tools/tf_sig_build_dockerfiles/setup.python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ python3 -m pip install -U setuptools

if [[ $3 ]]; then
echo "Runtime mode"
python3 -m pip install --no-cache-dir --no-deps tf-keras-nightly
python3 -m pip install --no-cache-dir --no-deps tf-keras==2.17.0rc0
else
echo "Install Requirements"
# Disable the cache dir to save image space, and install packages
python3 -m pip install --no-cache-dir -r $REQUIREMENTS -U
python3 -m pip install --no-cache-dir --no-deps tf-keras-nightly
python3 -m pip install --no-cache-dir --no-deps tf-keras==2.17.0rc0
fi
Loading