This file contains hidden or 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
tensorflow==1.13.2 | |
libxgboost==0.90 | |
gensim==3.8.1 | |
git==2.23.0 | |
graphviz=2.38.0 | |
joblib=0.14.0 | |
libgdal==3.0.1 | |
orange3==3.23.1 | |
pyqtgraph==0.10.0 | |
regex==2019.08.19 |
This file contains hidden or 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
Set-Location "c:\aws\download" | |
Start-Process -FilePath 'c:\aws\download\anaconda3.exe' -ArgumentList '/S /InstallationType=AllUsers /RegisterPython=1 /AddToPath=1' -Wait | |
del c:\aws\download\anaconda3.exe | |
$acl = Get-Acl 'C:\ProgramData\Anaconda3' | |
$rule = New-Object System.Security.AccessControl.FileSystemAccessRule ("Users", "Write", "ObjectInherit,ContainerInherit","None","Allow") | |
$acl.SetAccessRule($rule) | |
Set-Acl 'C:\ProgramData\Anaconda3' $acl |
This file contains hidden or 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
dir "c:\aws\download" | |
Write-Host 'Conda packages Install' | |
# Ensure anaconda is installed | |
Start-Process -FilePath 'conda' -ArgumentList 'install anaconda -y' -wait | |
# Install packages | |
Start-Process -FilePath 'conda' -ArgumentList 'install -c pytorch pytorch -y' -wait | |
Start-Process -FilePath 'conda' -ArgumentList 'install -c fastai fastai -y' -wait |
NewerOlder