Skip to content

Commit 886ad51

Browse files
committed
Use python command instead of python3.
1 parent e87e5ff commit 886ad51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/activatePythonEnvironment.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ VENV_DIRECTORY=".venv"
7272
if [ ! -d "${ROOT_DIRECTORY}/${VENV_DIRECTORY}" ]; then
7373
deactivate_conda_if_necessary
7474
echo "activatePythonEnvironment: Creating ${VENV_DIRECTORY} environment..."
75-
python3 -m venv "${ROOT_DIRECTORY}/${VENV_DIRECTORY}"
75+
python -m venv "${ROOT_DIRECTORY}/${VENV_DIRECTORY}"
7676
else
7777
echo "activatePythonEnvironment: Already created ${VENV_DIRECTORY} environment."
7878
fi

0 commit comments

Comments
 (0)