Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Intel MKL] Reverting changes from 495d511 that break install_pip_packages.sh in … #18888

Merged
merged 1 commit into from
May 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 3 additions & 8 deletions tensorflow/tools/ci_build/install/install_pip_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,9 @@
set -e

# We don't apt-get install so that we can install a newer version of pip.
# Only needed for Ubuntu 14.04 ,and not needed for Ubuntu 16.04 / Debian 8,9
if $(cat /etc/*-release | grep -q 14.04); then
easy_install -U pip==9.0.3
easy_install3 -U pip==9.0.3
else
pip2 install --upgrade pip==9.0.3
pip3 install --upgrade pip==9.0.3
fi
# Only needed for Ubuntu 14.04 and 16.04; not needed for 18.04 and Debian 8,9?
easy_install -U pip==9.0.3
easy_install3 -U pip==9.0.3

# Install pip packages from whl files to avoid the time-consuming process of
# building from source.
Expand Down