Skip to content

Instantly share code, notes, and snippets.

@msarahan
Last active April 4, 2016 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msarahan/7ecc334c20be039c9da9fcfcc6bf6610 to your computer and use it in GitHub Desktop.
Save msarahan/7ecc334c20be039c9da9fcfcc6bf6610 to your computer and use it in GitHub Desktop.
BoxStarter install for Miniconda
$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