File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ set "script_dir=%~dp0"
55set " venv_dir = %script_dir% venv"
66
77if not exist " %venv_dir% " (
8- python -m venv " %venv_dir% "
9- " %venv_dir% \Scripts\python " -m pip --require-virtualenv install --upgrade pip build
8+ python3 -m venv " %venv_dir% "
9+ " %venv_dir% \Scripts\python3 " -m pip --require-virtualenv install --upgrade pip build
1010)
1111
12- " %venv_dir% \Scripts\python " %*
12+ " %venv_dir% \Scripts\python3 " %*
1313
1414endlocal
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ script_dir="$(cd "$(dirname "$0")" && pwd)"
55venv_dir=" $script_dir /venv"
66
77if [[ ! -d " $venv_dir " ]]; then
8- python -m venv " $venv_dir "
9- " $venv_dir /bin/python " -m pip --require-virtualenv install --upgrade pip build
8+ python3 -m venv " $venv_dir "
9+ " $venv_dir /bin/python3 " -m pip --require-virtualenv install --upgrade pip build
1010fi
1111
12- " $venv_dir /bin/python " " $@ "
12+ " $venv_dir /bin/python3 " " $@ "
You can’t perform that action at this time.
0 commit comments