Last active
April 4, 2016 18:45
-
-
Save msarahan/7ecc334c20be039c9da9fcfcc6bf6610 to your computer and use it in GitHub Desktop.
BoxStarter install for Miniconda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$url = "https://repo.continuum.io/miniconda/Miniconda3-latest-Windows-x86_64.exe" | |
$output = "$PSScriptRoot\Miniconda3-latest-Windows-x86_64.exe" | |
$wc = New-Object System.Net.WebClient | |
$wc.DownloadFile($url, $output) | |
#OR | |
(New-Object System.Net.WebClient).DownloadFile($url, $output) | |
$filepath = $PSScriptRoot\Miniconda3-latest-Windows-x86_64.exe | |
$args = "/S /D=C:\Miniconda3_x64" | |
Write-Host $filepath $args | |
Start-Process -FilePath $filepath -ArgumentList $args -Wait -Passthru | |
conda install -y git conda-build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment