We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c701b89 commit c5b7f1bCopy full SHA for c5b7f1b
tensorflow_examples/lite/model_maker/pip_package/create_venv.sh
@@ -12,8 +12,8 @@ fi
12
PIP_FLAG="--user"
13
14
function create_venv_or_activate {
15
- local PY="$(which python3.7)"
16
- local PIP="$(which pip3.7)"
+ local PY="$(which python3.8)"
+ local PIP="$(which pip3.8)"
17
# Test whether pip exists.
18
if [[ "${PY}" == "" ]]; then
19
echo "python is not available."
@@ -27,7 +27,7 @@ function create_venv_or_activate {
27
source "${VENV_HOME}/bin/activate"
28
29
# Install required package: twine, wheel
30
- PY="$(which python3.7)"
+ PY="$(which python3.8)"
31
"${PY?}" -m pip install twine==3.7.1 wheel
32
else
33
0 commit comments