Skip to content

Commit e50f6b2

Browse files
authored
Merge pull request #221 from Azure-Samples/pamelafox-patch-1
Update prepdocs.sh to use python3
2 parents 648d718 + 6d059ba commit e50f6b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if [ $? -ne 0 ]; then
1717
fi
1818

1919
echo 'Creating python virtual environment "backend/backend_env"'
20-
python -m venv backend/backend_env
20+
python3 -m venv backend/backend_env
2121

2222
echo ""
2323
echo "Restoring backend python packages"

scripts/prepdocs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ $(azd env get-values)
1212
EOF
1313

1414
echo 'Creating python virtual environment "scripts/.venv"'
15-
python -m venv scripts/.venv
15+
python3 -m venv scripts/.venv
1616

1717
echo 'Installing dependencies from "requirements.txt" into virtual environment'
1818
./scripts/.venv/bin/python -m pip install -r scripts/requirements.txt

0 commit comments

Comments
 (0)