summaryrefslogtreecommitdiff
path: root/ci/install.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'ci/install.ps1')
-rw-r--r--ci/install.ps16
1 files changed, 2 insertions, 4 deletions
diff --git a/ci/install.ps1 b/ci/install.ps1
index 330005e6..f9934aa1 100644
--- a/ci/install.ps1
+++ b/ci/install.ps1
@@ -9,7 +9,6 @@ $MINICONDA_URL = "http://repo.continuum.io/miniconda/"
$BASE_URL = "https://www.python.org/ftp/python/"
$GET_PIP_URL = "https://bootstrap.pypa.io/get-pip.py"
$GET_PIP_PATH = "C:\get-pip.py"
-$RUN_GET_PIP_PATH = "ci\get-pip.py"
$PYTHON_PRERELEASE_REGEX = @"
(?x)
@@ -165,9 +164,8 @@ function InstallPip ($python_home) {
Write-Host "Installing pip..."
$webclient = New-Object System.Net.WebClient
$webclient.DownloadFile($GET_PIP_URL, $GET_PIP_PATH)
- Write-Host "Executing:" $python_path $RUN_GET_PIP_PATH
- #Start-Process -FilePath "$python_path" -ArgumentList "$RUN_GET_PIP_PATH" -Wait -Passthru
- & $python_path $RUN_GET_PIP_PATH -v
+ Write-Host "Executing:" $python_path $GET_PIP_PATH
+ & $python_path $GET_PIP_PATH
} else {
Write-Host "pip already installed."
}