Skip to content

Commit 7da396f

Browse files
authored
[pipeline] Upgrade python version to python3.8 (#22503)
* python3.8 * python3.8 * python3.8
1 parent 9c85b94 commit 7da396f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

scripts/automation_init.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
#!/bin/bash
22

3+
# install python3.8
4+
sudo apt-get install python3.8
5+
sudo apt-get install python3.8-venv
6+
7+
# init env
38
rm -rf $TMPDIR/venv-sdk
4-
python3 -m venv $TMPDIR/venv-sdk
9+
python3.8 -m venv $TMPDIR/venv-sdk
510
VIRTUAL_ENV=$TMPDIR/venv-sdk
611
export VIRTUAL_ENV
712
PATH="$VIRTUAL_ENV/bin:$PATH"

0 commit comments

Comments
 (0)