forked from openvinotoolkit/training_extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init_venv.sh
executable file
·54 lines (38 loc) · 1.38 KB
/
init_venv.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env bash
work_dir=$(realpath "$(dirname $0)")
venv_dir=$1
if [ -z "$venv_dir" ]; then
venv_dir=venv
fi
echo ${venv_dir}
cd ${work_dir}
if [[ -e ${venv_dir} ]]; then
echo
echo "Virtualenv already exists. Use command to start working:"
echo "$ . ${venv_dir}/bin/activate"
exit
fi
# Download mmdetection
git submodule update --init ../../external/mmdetection
# Create virtual environment
virtualenv ${venv_dir} -p python3 --prompt="(instance_segmentation)"
path_openvino_vars="${INTEL_OPENVINO_DIR:-/opt/intel/openvino}/bin/setupvars.sh"
if [[ -e "${path_openvino_vars}" ]]; then
echo ". ${path_openvino_vars}" >> ${venv_dir}/bin/activate
fi
. ${venv_dir}/bin/activate
cat requirements.txt | xargs -n 1 -L 1 pip3 install
mo_requirements_file="${INTEL_OPENVINO_DIR:-/opt/intel/openvino}/deployment_tools/model_optimizer/requirements_onnx.txt"
if [[ -e "${mo_requirements_file}" ]]; then
pip install -qr ${mo_requirements_file}
else
echo "[WARNING] Model optimizer requirements were not installed. Please install the OpenVino toolkit to use one."
fi
pip install -e ../../external/mmdetection/
MMDETECTION_DIR=`realpath ../../external/mmdetection/`
echo "export MMDETECTION_DIR=${MMDETECTION_DIR}" >> ${venv_dir}/bin/activate
pip install -e ../../pytorch_toolkit/ote/
deactivate
echo
echo "Activate a virtual environment to start working:"
echo "$ . ${venv_dir}/bin/activate"