2022-07-29 04:08:07 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
# Copyright (c) Huawei Technologies Co., Ltd. 2019. All rights reserved.
|
2021-06-01 16:45:03 +00:00
|
|
|
|
2020-09-08 02:21:39 +00:00
|
|
|
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!"
|
2022-07-29 04:08:07 +00:00
|
|
|
cd $(dirname "$0") || error "Failure to change direcory!"
|
2022-07-25 08:25:32 +00:00
|
|
|
$PYTHON -c "import pip" || error "Please install pip first!"
|
2020-09-08 02:21:39 +00:00
|
|
|
|
2022-07-29 04:08:07 +00:00
|
|
|
if [ ! -d $TOOLS ]; then
|
2020-09-08 02:21:39 +00:00
|
|
|
error "$TOOLS directory not exists"
|
|
|
|
fi
|
|
|
|
|
2022-07-29 04:08:07 +00:00
|
|
|
$PYTHON -m pip uninstall -y xdevice
|
|
|
|
$PYTHON -m pip uninstall -y xdevice-extension
|
|
|
|
$PYTHON -m pip uninstall -y xdevice-ohos
|
|
|
|
|
2020-09-08 02:21:39 +00:00
|
|
|
for f in "$TOOLS"/*.egg
|
|
|
|
do
|
|
|
|
if [ ! -e "$f" ]; then
|
|
|
|
error "Can not find xdevice package!"
|
|
|
|
fi
|
2022-07-25 08:25:32 +00:00
|
|
|
$PYTHON -m pip install --user "$f" || echo "Error occurs to install $f!"
|
2020-09-08 02:21:39 +00:00
|
|
|
done
|
|
|
|
|
2021-03-11 10:42:50 +00:00
|
|
|
for f in "$TOOLS"/*.tar.gz
|
|
|
|
do
|
|
|
|
if [ ! -e "$f" ]; then
|
|
|
|
error "Can not find xdevice package!"
|
|
|
|
fi
|
2022-07-25 08:25:32 +00:00
|
|
|
$PYTHON -m pip install --user "$f" || echo "Error occurs to install $f!"
|
2021-03-11 10:42:50 +00:00
|
|
|
done
|
|
|
|
|
2020-09-08 02:21:39 +00:00
|
|
|
$PYTHON -m xdevice "$@"
|