run.sh 1.5 KB
Newer Older
M
mamingshuai 已提交
1
#!/bin/bash
M
mamingshuai 已提交
2
#
M
mamingshuai 已提交
3
# Copyright (C) 2020-2021 Huawei Device Co., Ltd.
M
mamingshuai 已提交
4 5 6 7 8 9 10 11 12 13 14 15
# 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.
#
W
wenjun 已提交
16

M
mamingshuai 已提交
17 18
set -e

W
wenjun 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
error()
{
  echo "$1"
  exit 1
}
PYTHON="python3"
TOOLS="tools"

flag=$(command -v $PYTHON | grep -c $PYTHON)
if [ "$flag" -eq 0 ]; then
    error "Python3.7 or higher version required!"
fi

$PYTHON -c 'import sys; exit(1) if sys.version_info.major < 3 or sys.version_info.minor < 7 else exit(0)' || \
error "Python3.7 or higher version required!"
M
mamingshuai 已提交
34
cd $(dirname "$0") || error "Failure to change directory!"
W
wenjun 已提交
35 36
$PYTHON -c "import easy_install" || error "Please install setuptools first!"

M
mamingshuai 已提交
37
if [ ! -d "$TOOLS" ]; then
W
wenjun 已提交
38 39 40 41 42 43 44 45 46 47 48
  error "$TOOLS directory not exists"
fi

for f in "$TOOLS"/*.egg
do
  if [ ! -e "$f" ]; then
    error "Can not find xdevice package!"
  fi
  $PYTHON -m easy_install --user "$f" || echo "Error occurs to install $f!"
done

M
mamingshuai 已提交
49 50 51 52 53 54 55 56
for f in "$TOOLS"/*.tar.gz
do
  if [ ! -e "$f" ]; then
    error "Can not find xdevice package!"
  fi
  $PYTHON -m easy_install --user "$f" || echo "Error occurs to install $f!"
done

W
wenjun 已提交
57
$PYTHON -m xdevice "$@"
M
mamingshuai 已提交
58
exit 0