mirror of
https://github.com/zebrajr/tensorflow.git
synced 2026-01-15 12:15:41 +00:00
46 lines
1.7 KiB
Bash
Executable File
46 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright 2022 The TensorFlow Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# ==============================================================================
|
|
#
|
|
# setup.python.sh: Install a specific Python version and packages for it.
|
|
# Usage: setup.python.sh <pyversion> <requirements.txt>
|
|
|
|
# Sets up custom apt sources for our TF images.
|
|
|
|
# Prevent apt install tzinfo from asking our location (assumes UTC)
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Set up shared custom sources
|
|
apt-get update
|
|
apt-get install -y gnupg ca-certificates
|
|
|
|
# Deadsnakes: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa
|
|
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F23C5A6CF475977595C89F51BA6932366A755776
|
|
|
|
# LLVM/Clang: https://apt.llvm.org/
|
|
apt-key adv --fetch-keys https://apt.llvm.org/llvm-snapshot.gpg.key
|
|
|
|
# Set up custom sources
|
|
cat >/etc/apt/sources.list.d/custom.list <<SOURCES
|
|
# More Python versions: Deadsnakes
|
|
deb http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main
|
|
deb-src http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main
|
|
|
|
# LLVM/Clang 18 repository
|
|
deb http://apt.llvm.org/focal/ llvm-toolchain-focal-18 main
|
|
deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-18 main
|
|
SOURCES
|