File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -51,15 +51,16 @@ function is_macos() {
51
51
# Install Pip dependencies
52
52
${PYTHON} -m ensurepip --upgrade || true
53
53
${PYTHON} -m pip install pip setuptools --upgrade
54
- ${PYTHON} -m pip install numpy pandas scikit-learn tf_keras
54
+ ${PYTHON} -m pip install numpy pandas scikit-learn
55
55
56
56
# Install Tensorflow at the chosen version.
57
57
if [ ${TF_VERSION} == " nightly" ]; then
58
- ${PYTHON} -m pip install tf-nightly --force-reinstall
58
+ ${PYTHON} -m pip install tf-nightly tf-keras-nightly --force-reinstall
59
59
TF_MINOR=" nightly"
60
60
else
61
61
${PYTHON} -m pip install tensorflow==${TF_VERSION} --force-reinstall
62
62
TF_MINOR=$( echo $TF_VERSION | grep -oP ' [0-9]+\.[0-9]+' )
63
+ ${PYTHON} -m pip install tf-keras==${TF_MINOR} --force-reinstall
63
64
fi
64
65
ext=" "
65
66
You can’t perform that action at this time.
0 commit comments