Install python3 package by default
PiperOrigin-RevId: 314967616 Change-Id: Ibb43020f86b4eee2df53727774726d44e074c8dd
This commit is contained in:
parent
b055058610
commit
077ae24c53
@ -75,7 +75,7 @@ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.6 0
|
||||
# Install given tensorflow or tf-nightly version, if not specified, install the # latest official release
|
||||
ARG TF_PACKAGE=tensorflow
|
||||
ARG TF_PACKAGE_VERSION=
|
||||
RUN pip install ${TF_PACKAGE}${TF_PACKAGE_VERSION:+==${TF_PACKAGE_VERSION}}
|
||||
RUN pip3 install ${TF_PACKAGE}${TF_PACKAGE_VERSION:+==${TF_PACKAGE_VERSION}}
|
||||
|
||||
# TODO(klimek): Figure out a better way to get the right include paths
|
||||
# forwarded when we install new packages.
|
||||
|
@ -75,7 +75,7 @@ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.6 0
|
||||
# Install given tensorflow or tf-nightly version, if not specified, install the # latest official release
|
||||
ARG TF_PACKAGE=tensorflow
|
||||
ARG TF_PACKAGE_VERSION=
|
||||
RUN pip install ${TF_PACKAGE}${TF_PACKAGE_VERSION:+==${TF_PACKAGE_VERSION}}
|
||||
RUN pip3 install ${TF_PACKAGE}${TF_PACKAGE_VERSION:+==${TF_PACKAGE_VERSION}}
|
||||
|
||||
# TODO(klimek): Figure out a better way to get the right include paths
|
||||
# forwarded when we install new packages.
|
||||
|
@ -77,7 +77,7 @@ RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.6 0
|
||||
# Install given tensorflow or tf-nightly version, if not specified, install the # latest official release
|
||||
ARG TF_PACKAGE=tensorflow
|
||||
ARG TF_PACKAGE_VERSION=
|
||||
RUN pip install ${TF_PACKAGE}${TF_PACKAGE_VERSION:+==${TF_PACKAGE_VERSION}}
|
||||
RUN pip3 install ${TF_PACKAGE}${TF_PACKAGE_VERSION:+==${TF_PACKAGE_VERSION}}
|
||||
|
||||
# TODO(klimek): Figure out a better way to get the right include paths
|
||||
# forwarded when we install new packages.
|
||||
|
Loading…
Reference in New Issue
Block a user