We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 830ae69 commit 324ad2bCopy full SHA for 324ad2b
.evergreen/scripts/install-dependencies.sh
@@ -18,6 +18,9 @@ function _pip_install() {
18
_HERE=$(dirname ${BASH_SOURCE:-$0})
19
. $_HERE/../utils.sh
20
_VENV_PATH=$(mktemp -d)
21
+ if [ "Windows_NT" = "${OS:-}" ]; then
22
+ _VENV_PATH=$(cygpath -m $_VENV_PATH)
23
+ fi
24
echo "Installing $2 using pip..."
25
createvirtualenv "$(find_python3)" $_VENV_PATH
26
python -m pip install $1
0 commit comments