We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
python -m pip install -U pip
1 parent 951439a commit 0ce2110Copy full SHA for 0ce2110
bin/env.sh
@@ -40,7 +40,11 @@ if [ ! -d "${BUILDDIR}/${VENV}" ]; then
40
41
# Install all requirements into the virtualenv.
42
echo "Installing virtualenv requirements..."
43
- ${BUILDDIR}/${VENV}/${BIN}/pip${EXE} install --upgrade pip
+ if [ "$(uname)" = "Windows_NT" ]; then
44
+ ${PYTHON} -m pip install -U pip
45
+ else
46
+ ${BUILDDIR}/${VENV}/${BIN}/pip${EXE} install --upgrade pip
47
+ fi
48
${BUILDDIR}/${VENV}/${BIN}/pip${EXE} install -r ${BASEDIR}/requirements.txt
49
${BUILDDIR}/${VENV}/${BIN}/pip${EXE} install -e ${BASEDIR}
50
if [ "$(uname)" = "Windows_NT" ]; then
0 commit comments