Home
last modified time | relevance | path

Searched +full:update +full:- +full:alternatives (Results 1 – 25 of 289) sorted by relevance

12345678910>>...12

/external/tensorflow/tensorflow/tools/ci_build/install/
Dinstall_gcc6.sh8 # http://www.apache.org/licenses/LICENSE-2.0
17 apt-get update
18 apt-get install build-essential software-properties-common -y
19 add-apt-repository ppa:ubuntu-toolchain-r/test -y
20 apt-get update
21 apt-get install gcc-snapshot -y
22 apt-get update
23 apt-get install gcc-6 g++-6 -y
24 update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 100 --slave /usr/bin/g++ g++ /usr/bin…
25 update-alternatives --set gcc /usr/bin/gcc-6
Dinstall_pi_python3.9_toolchain.sh8 # http://www.apache.org/licenses/LICENSE-2.0
17 yes | add-apt-repository ppa:deadsnakes/ppa
18 apt-get update
19 apt-get install -y python3.9 python3.9-dev
20 apt-get install -y python3-pip
21 ln -sf /usr/bin/python3.9 /usr/local/bin/python3.9
22 apt-get install -y python3.9-distutils
23 update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1
24 update-alternatives --set python3 /usr/bin/python3.9
25 pip3 install --upgrade pip
[all …]
/external/tensorflow/tensorflow/tools/dockerfiles/partials/onednn/ubuntu/
D1604-horovod.partial.Dockerfile7 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
8 software-properties-common
10 RUN cd /usr/lib/python3/dist-packages && \
11 ln -sf apt_pkg.cpython-35m-x86_64-linux-gnu.so apt_pkg.so
13 RUN add-apt-repository ppa:ubuntu-toolchain-r/test
15 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
16 build-essential \
18 g++-8 \
19 gcc-8 \
21 ${PYTHON}-dev
[all …]
Dhorovod.partial.Dockerfile7 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
8 build-essential \
10 g++-8 \
11 gcc-8 \
13 ${PYTHON}-dev
15 RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 700 --slave /usr/bin/g++ g++ /usr…
16update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 800 --slave /usr/bin/g++ g++ /usr/bi…
18 RUN ${PYTHON} -m pip install git+https://github.com/horovod/horovod.git@${HOROVOD_VERSION}
D2004-horovod.partial.Dockerfile7 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
8 build-essential \
10 g++-8 \
11 gcc-8 \
13 ${PYTHON}-dev
15 RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 100 --slave /usr/bin/g++ g++ /usr…
16update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 800 --slave /usr/bin/g++ g++ /usr/bi…
18 RUN ${PYTHON} -m pip install git+https://github.com/horovod/horovod.git@${HOROVOD_VERSION}
/external/AFLplusplus/
DDockerfile3 # installs LLVM 14 for afl-clang-lto support :-)
14 RUN apt-get update && \
15 apt-get -y install --no-install-suggests --no-install-recommends \
19 ninja-build \
21 build-essential \
23 python3 python3-dev python3-setuptools python-is-python3 \
24 libtool libtool-bin \
25 libglib2.0-dev \
26 wget vim jupp nano bash-completion less \
27 apt-utils apt-transport-https ca-certificates gnupg dialog \
[all …]
/external/tensorflow/tensorflow/tools/ci_build/
DDockerfile.cpu-py368 RUN add-apt-repository -y ppa:openjdk-r/ppa && \
9 add-apt-repository -y ppa:george-edison55/cmake-3.x
13 RUN add-apt-repository ppa:ubuntu-toolchain-r/test
14 RUN apt update
15 RUN apt -y install gcc-7 g++-7
16 RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 700 \
17 --slave /usr/bin/g++ g++ /usr/bin/g++-7
19 # The following line installs the Python 3.6 cross-compilation toolchain.
21 RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 0
22 RUN python3 -V
DDockerfile.custom_op_ubuntu_16_cuda10.03 FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04 as devtoolset
8 RUN apt-get update && apt-get install -y \
18 rm -rf /var/lib/apt/lists/*
22 ADD devtoolset/rpm-patch.sh rpm-patch.sh
24 # Set up a sysroot for glibc 2.12 / libstdc++ 4.4 / devtoolset-7 in /dt7.
25 RUN /build_devtoolset.sh devtoolset-7 /dt7
26 # Set up a sysroot for glibc 2.12 / libstdc++ 4.4 / devtoolset-8 in /dt8.
27 RUN /build_devtoolset.sh devtoolset-8 /dt8
30 FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04
34 COPY --from=devtoolset /dt7 /dt7
[all …]
DDockerfile.custom_op_ubuntu_16_cuda10.13 FROM nvidia/cuda:10.1-cudnn7-devel-ubuntu16.04 as devtoolset
8 RUN apt-get update && apt-get install -y \
18 rm -rf /var/lib/apt/lists/*
22 ADD devtoolset/rpm-patch.sh rpm-patch.sh
24 # Set up a sysroot for glibc 2.12 / libstdc++ 4.4 / devtoolset-7 in /dt7.
25 RUN /build_devtoolset.sh devtoolset-7 /dt7
26 # Set up a sysroot for glibc 2.12 / libstdc++ 4.4 / devtoolset-8 in /dt8.
27 RUN /build_devtoolset.sh devtoolset-8 /dt8
30 FROM nvidia/cuda:10.1-cudnn7-devel-ubuntu16.04
34 COPY --from=devtoolset /dt7 /dt7
[all …]
DDockerfile.custom_op_ubuntu_16_cuda11.23 FROM nvidia/cuda:11.2.1-cudnn8-devel-ubuntu16.04 as devtoolset
8 RUN apt-get update && apt-get install -y \
18 rm -rf /var/lib/apt/lists/*
22 ADD devtoolset/rpm-patch.sh rpm-patch.sh
24 # Set up a sysroot for glibc 2.12 / libstdc++ 4.4 / devtoolset-7 in /dt7.
25 RUN /build_devtoolset.sh devtoolset-7 /dt7
26 # Set up a sysroot for glibc 2.12 / libstdc++ 4.4 / devtoolset-8 in /dt8.
27 RUN /build_devtoolset.sh devtoolset-8 /dt8
30 FROM nvidia/cuda:11.2.1-cudnn8-devel-ubuntu16.04
34 COPY --from=devtoolset /dt7 /dt7
[all …]
DDockerfile.custom_op_ubuntu_168 RUN apt-get update && apt-get install -y \
20 xz-utils \
22 rm -rf /var/lib/apt/lists/*
26 ADD devtoolset/rpm-patch.sh rpm-patch.sh
28 # Set up a sysroot for glibc 2.12 / libstdc++ 4.4 / devtoolset-7 in /dt7.
29 RUN /build_devtoolset.sh devtoolset-7 /dt7
30 # Set up a sysroot for glibc 2.12 / libstdc++ 4.4 / devtoolset-8 in /dt8.
31 RUN /build_devtoolset.sh devtoolset-8 /dt8
38 COPY --from=devtoolset /dt7 /dt7
39 COPY --from=devtoolset /dt8 /dt8
[all …]
/external/tensorflow/tensorflow/tools/dockerfiles/dockerfiles/onednn/
Dubuntu-16.04-mpi-horovod.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
32 ENV LANG C.UTF-8
35 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
37 software-properties-common
39 RUN add-apt-repository ppa:deadsnakes/ppa
41 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
44 RUN curl -fSsL https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
46 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \
51 RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
52 ln -sf $(which ${PYTHON}) /usr/local/bin/python3 && \
[all …]
Dubuntu-16.04-mpich-horovod.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
32 ENV LANG C.UTF-8
35 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
37 software-properties-common
39 RUN add-apt-repository ppa:deadsnakes/ppa
41 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
44 RUN curl -fSsL https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
46 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \
51 RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
52 ln -sf $(which ${PYTHON}) /usr/local/bin/python3 && \
[all …]
Dubuntu-18.04-mpi-horovod.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
32 ENV LANG C.UTF-8
35 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
36 ca-certificates \
39 ${PYTHON}-distutils
41 RUN curl -fSsL https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
43 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \
48 RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
49 ln -sf $(which ${PYTHON}) /usr/local/bin/python3 && \
50 ln -sf $(which ${PYTHON}) /usr/bin/python && \
[all …]
Dubuntu-20.04-mpi-horovod.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
32 ENV LANG C.UTF-8
35 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
36 ca-certificates \
39 ${PYTHON}-distutils
41 RUN curl -fSsL https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
43 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \
48 RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
49 ln -sf $(which ${PYTHON}) /usr/local/bin/python3 && \
50 ln -sf $(which ${PYTHON}) /usr/bin/python && \
[all …]
Dubuntu-18.04-mpich-horovod.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
32 ENV LANG C.UTF-8
35 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
36 ca-certificates \
39 ${PYTHON}-distutils
41 RUN curl -fSsL https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
43 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \
48 RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
49 ln -sf $(which ${PYTHON}) /usr/local/bin/python3 && \
50 ln -sf $(which ${PYTHON}) /usr/bin/python && \
[all …]
Dubuntu-20.04-mpich-horovod.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
32 ENV LANG C.UTF-8
35 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
36 ca-certificates \
39 ${PYTHON}-distutils
41 RUN curl -fSsL https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
43 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \
48 RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
49 ln -sf $(which ${PYTHON}) /usr/local/bin/python3 && \
50 ln -sf $(which ${PYTHON}) /usr/bin/python && \
[all …]
Dubuntu-18.04-mpich-horovod-jupyter.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
32 ENV LANG C.UTF-8
35 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
36 ca-certificates \
39 ${PYTHON}-distutils
41 RUN curl -fSsL https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
43 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \
48 RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
49 ln -sf $(which ${PYTHON}) /usr/local/bin/python3 && \
50 ln -sf $(which ${PYTHON}) /usr/bin/python && \
[all …]
Dubuntu-20.04-mpich-horovod-jupyter.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
32 ENV LANG C.UTF-8
35 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
36 ca-certificates \
39 ${PYTHON}-distutils
41 RUN curl -fSsL https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
43 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \
48 RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
49 ln -sf $(which ${PYTHON}) /usr/local/bin/python3 && \
50 ln -sf $(which ${PYTHON}) /usr/bin/python && \
[all …]
Dubuntu-16.04-mpi-horovod-jupyter.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
32 ENV LANG C.UTF-8
35 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
37 software-properties-common
39 RUN add-apt-repository ppa:deadsnakes/ppa
41 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
44 RUN curl -fSsL https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
46 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \
51 RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
52 ln -sf $(which ${PYTHON}) /usr/local/bin/python3 && \
[all …]
Dubuntu-16.04-mpich-horovod-jupyter.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
32 ENV LANG C.UTF-8
35 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
37 software-properties-common
39 RUN add-apt-repository ppa:deadsnakes/ppa
41 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
44 RUN curl -fSsL https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
46 RUN ${PYTHON} -m pip --no-cache-dir install --upgrade \
51 RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
52 ln -sf $(which ${PYTHON}) /usr/local/bin/python3 && \
[all …]
/external/oss-fuzz/projects/tpm2-tss/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
16 FROM gcr.io/oss-fuzz-base/base-builder
18 RUN apt-get update && \
19 apt-get install -y \
20 autoconf-archive \
23 libcmocka-dev \
24 net-tools \
25 build-essential \
27 pkg-config \
33 libgcrypt20-dev \
[all …]
/external/libcxx/utils/docker/debian9/
DDockerfile1 #===- libcxx/utils/docker/debian9/Dockerfile -------------------------===//
8 #===----------------------------------------------------------------------===//
11 FROM launcher.gcr.io/google/debian9:latest as builder-base
14 RUN apt-get update && \
15 apt-get install -y --no-install-recommends \
16 ca-certificates \
18 build-essential \
25 ninja-build \
28 gcc-multilib \
29 g++-multilib \
[all …]
/external/tensorflow/tensorflow/tools/ci_build/linux/mkl/
DDockerfile.devel-mkl32 …curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VE…
33 chmod +x bazel-$BAZEL_VERSION-installer-linux-x86_64.sh && \
34 ./bazel-$BAZEL_VERSION-installer-linux-x86_64.sh && \
35 rm -rf bazel-$BAZEL_VERSION-installer-linux-x86_64.sh; \
38 # Upgrade gcc-8 if argument is passed
40 add-apt-repository ppa:ubuntu-toolchain-r/test -y && \
41 apt-get update && \
42 apt-get install gcc-8 g++-8 -y && \
43update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 80 --slave /usr/bin/g++ g++ /usr/bin…
44update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70 --slave /usr/bin/g++ g++ /usr/bin…
[all …]
/external/liburing/.github/workflows/
Dbuild.yml10 runs-on: ubuntu-latest
13 fail-fast: false
16 # x86-64 gcc
17 - arch: x86_64
18 cc_pkg: gcc-x86-64-linux-gnu
19 cxx_pkg: g++-x86-64-linux-gnu
20 cc: x86_64-linux-gnu-gcc
21 cxx: x86_64-linux-gnu-g++
23 # x86-64 clang
24 - arch: x86_64
[all …]

12345678910>>...12