Skip to content

Instantly share code, notes, and snippets.

@lordlinus
Created October 8, 2019 05:51
Show Gist options
  • Save lordlinus/0d35f58b201e991ea7d31202c6d10415 to your computer and use it in GitHub Desktop.
Save lordlinus/0d35f58b201e991ea7d31202c6d10415 to your computer and use it in GitHub Desktop.
dir "c:\aws\download" # Check the dir and list the files
Write-Host 'Conda packages Install'
Set-Location "c:\aws\download"
# Ensure anaconda is installed
Start-Process -FilePath 'conda' -ArgumentList 'install anaconda -y' -wait
# Install packages
Start-Process -FilePath 'conda' -ArgumentList 'install tensorflow=1.14.0 keras=2.2.4 -y' -wait
Start-Process -FilePath 'conda' -ArgumentList 'install -c conda-forge dash=1.3.0 orange3==3.23.1 lightgbm==2.3.0 -y' -wait
Start-Process -FilePath 'conda' -ArgumentList 'install -c pytorch pytorch=1.2.0 -y' -wait
Start-Process -FilePath 'conda' -ArgumentList 'install -c fastai fastai=1.0.58 -y' -wait
Start-Process -FilePath 'conda' -ArgumentList 'install -c h2oai h2o=3.18.0.2 -y' -wait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment