|
| 1 | +#!/bin/bash |
| 2 | + |
| 3 | +# Copyright (c) 2024 Samsung Electronics Co., Ltd. All Rights Reserved |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +# you may not use this file except in compliance with the License. |
| 7 | +# You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software |
| 12 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +# See the License for the specific language governing permissions and |
| 15 | +# limitations under the License. |
| 16 | + |
| 17 | +set -e |
| 18 | + |
| 19 | +DRIVER_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
| 20 | + |
| 21 | +VENV_ACTIVATE=${DRIVER_PATH}/venv/bin/activate |
| 22 | +# NOTE please use venv's python instead of python after `source activation`. |
| 23 | +# This script is called by debian maintainer script, i.e. `postinst`. |
| 24 | +# Since debian maintainer script is called with sudo, `source activation` is ignored. |
| 25 | +VENV_PYTHON=${DRIVER_PATH}/venv/bin/python |
| 26 | + |
| 27 | +if [ ! -f ${VENV_ACTIVATE} ]; then |
| 28 | + # Create python virtual enviornment |
| 29 | + python3.8 -m venv "${DRIVER_PATH}/venv" |
| 30 | +fi |
| 31 | + |
| 32 | +# NOTE version |
| 33 | +# - https://github.com/onnx/onnx/blob/master/docs/Versioning.md |
| 34 | +# - https://github.com/onnx/onnx-tensorflow/blob/master/Versioning.md |
| 35 | + |
| 36 | +VER_TENSORFLOW=2.12.1 |
| 37 | +VER_ONNX=1.16.0 |
| 38 | +VER_ONNXRUNTIME=1.18.0 |
| 39 | +VER_ONNX_TF=1.10.0 |
| 40 | +VER_PYDOT=1.4.2 |
| 41 | +VER_TORCH="2.1.2+cpu" |
| 42 | + |
| 43 | +# Install tensorflow |
| 44 | + |
| 45 | +PIP_TRUSTED_HOST="--trusted-host pypi.org " |
| 46 | +PIP_TRUSTED_HOST+="--trusted-host pypi.python.org " |
| 47 | +PIP_TRUSTED_HOST+="--trusted-host files.pythonhosted.org " |
| 48 | +PIP_TRUSTED_HOST+="--trusted-host download.pytorch.org " |
| 49 | + |
| 50 | +PIP_TIMEOUT="--default-timeout=1000 " |
| 51 | + |
| 52 | +PIP_OPTIONS="${PIP_TIMEOUT} ${PIP_TRUSTED_HOST}" |
| 53 | + |
| 54 | +# NOTE $ONE_PREPVENV_PIP_OPTION is to provide additional PIP options |
| 55 | +# such as ceritificate file behind firewall |
| 56 | +# ex) ONE_PREPVENV_PIP_OPTION="--cert SomePrivateCetificate.crt" ./one-prepare-venv |
| 57 | +if [[ ! -z "$ONE_PREPVENV_PIP_OPTION" ]]; then |
| 58 | + PIP_OPTIONS+=" ${ONE_PREPVENV_PIP_OPTION} " |
| 59 | +fi |
| 60 | + |
| 61 | +${VENV_PYTHON} -m pip ${PIP_OPTIONS} install --upgrade pip setuptools |
| 62 | +if [ -n "${EXT_TENSORFLOW_WHL}" ]; then |
| 63 | + ${VENV_PYTHON} -m pip ${PIP_OPTIONS} install ${EXT_TENSORFLOW_WHL} |
| 64 | +else |
| 65 | + ${VENV_PYTHON} -m pip ${PIP_OPTIONS} install tensorflow-cpu==${VER_TENSORFLOW} |
| 66 | +fi |
| 67 | +${VENV_PYTHON} -m pip ${PIP_OPTIONS} install Pillow |
| 68 | +# Fix version to that of TF release date |
| 69 | +${VENV_PYTHON} -m pip ${PIP_OPTIONS} install tensorflow_probability==0.20.1 |
| 70 | +${VENV_PYTHON} -m pip ${PIP_OPTIONS} install tensorflow_addons==0.20.0 |
| 71 | + |
| 72 | +# Install PyTorch and ONNX related |
| 73 | +# NOTE set ONE_PREPVENV_TORCH_SOURCE to override options for source URL. |
| 74 | +TORCH_SOURCE_OPTION="-f https://download.pytorch.org/whl/torch_stable.html" |
| 75 | +if [[ ! -z "$ONE_PREPVENV_TORCH_SOURCE" ]]; then |
| 76 | + TORCH_SOURCE_OPTION="${ONE_PREPVENV_TORCH_SOURCE}" |
| 77 | +fi |
| 78 | +# TODO remove torch message |
| 79 | +echo "Torch from '${ONE_PREPVENV_TORCH_SOURCE}' -> '${TORCH_SOURCE_OPTION}'" |
| 80 | +${VENV_PYTHON} -m pip ${PIP_OPTIONS} install torch==${VER_TORCH} ${TORCH_SOURCE_OPTION} |
| 81 | + |
| 82 | +${VENV_PYTHON} -m pip ${PIP_OPTIONS} install onnx==${VER_ONNX} |
| 83 | + |
| 84 | +${VENV_PYTHON} -m pip ${PIP_OPTIONS} install onnxruntime==${VER_ONNXRUNTIME} |
| 85 | + |
| 86 | +# Provide install of custom onnx-tf |
| 87 | +if [ -n "${EXT_ONNX_TF_WHL}" ]; then |
| 88 | + ${VENV_PYTHON} -m pip ${PIP_OPTIONS} install ${EXT_ONNX_TF_WHL} |
| 89 | +else |
| 90 | + ${VENV_PYTHON} -m pip ${PIP_OPTIONS} install onnx-tf==${VER_ONNX_TF} |
| 91 | +fi |
| 92 | + |
| 93 | +# Fix version to that of TF release date |
| 94 | +${VENV_PYTHON} -m pip ${PIP_OPTIONS} install --upgrade protobuf==4.23.3 |
| 95 | + |
| 96 | +# Install pydot for visq |
| 97 | +${VENV_PYTHON} -m pip ${PIP_OPTIONS} install pydot==${VER_PYDOT} |
0 commit comments