We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fe6364 commit 0964d7dCopy full SHA for 0964d7d
1 file changed
scripts/install_with_constraints.sh
@@ -10,5 +10,7 @@ if [[ ! -f "constraints.txt" ]]; then
10
exit 1
11
fi
12
13
-pip install -r requirements.txt -c constraints.txt
+PYTHON_BIN="${PYTHON_BIN:-python}"
14
+
15
+"${PYTHON_BIN}" -m pip install -r requirements.txt -c constraints.txt
16
0 commit comments