File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 1010OV_VER=2022.1.0
1111OV_DLW_VER=2022.1.0
1212
13- # Install dependencies and Docker
13+ # Install dependencies, Install Python3.8
1414sudo yum -y update &&
1515 sudo yum -y groupinstall " Development Tools" &&
16- sudo amazon-linux-extras install -y docker &&
16+ sudo amazon-linux-extras enable python3.8 &&
17+ sudo yum -y install python3.8 &&
18+ sudo yum install -y python38-devel.x86_64 &&
19+ sudo ln -s /usr/bin/pip3.8 /usr/bin/pip &&
20+ pip install --upgrade pip
21+
22+ # Install Docker
23+ sudo amazon-linux-extras install -y docker &&
1724 sudo systemctl enable docker &&
1825 sudo systemctl start docker &&
1926 sudo usermod -a -G docker ec2-user
2027
21- sudo ln -s /usr/bin/pip3 /usr/bin/pip
22-
2328# Install OpenVINO and DL-Workbench
24- sudo yum install -y python3 &&
25- sudo yum install -y python3-devel.x86_64 &&
26- pip install --upgrade pip &&
2729 pip install jupyterlab progress tqdm matplotlib scipy ipykernel virtualenv &&
2830 pip install openvino-dev==$OV_VER &&
2931 pip install openvino-workbench==$OV_DLW_VER
You can’t perform that action at this time.
0 commit comments