Created
October 17, 2018 19:16
-
-
Save ThaddParker/d32e3c5021653bfbd35d73a0c78fd107 to your computer and use it in GitHub Desktop.
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-ExplorerOptions -showProtectedOSFiles -showFileExtensions -showHiddenFilesFolderDrives | |
Enable-RemoteDesktop | |
$Boxstarter.RebootOK=$true | |
Update-ExecutionPolicy Unrestricted | |
Disable-InternetExplorerESC | |
Install-WindowsUpdate -AcceptEula | |
if(Test-PendingReboot){Invoke-Reboot} | |
cinst google-chrome-x64 | |
cinst sysinternals | |
cinst git | |
cinst git.install | |
cinst notepadplusplus.install | |
cinst vscode | |
cinst visualstudio2017buildtools | |
cinst vcbuildtools | |
cinst azure-cli | |
cinst anaconda3 | |
cinst rsat -y | |
if(Test-PendingReboot){Invoke-Reboot} | |
cinst sql-server-management-tools | |
if(Test-PendingReboot){Invoke-Reboot} | |
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles)\Google\Chrome\Application\Chrome.exe" | |
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles)\Notepad++\notepad++.exe" | |
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles)\Microsoft VS Code\bin\code.exe | |
#configure the environment | |
[Environment]::SetEnvironmentVariable("Path",$env::Path+";C:\Tools\Anaconda3;C:\Tools\Anaconda3\Scripts;C:\Tools\Anaconda3\bin","Machine") | |
refreshenv | |
# now to get ourselves started | |
conda upgrade conda | |
python -m pip install --upgrade pip | |
pip install azure-cli-ml | |
az extension add -s -y https://azuremlsdktestpypi.blob.core.windows.net/wheels/sdk-release/Preview/E7501C02541B433786111FE8E140CAA1/azure_cli_ml-0.1.50-py2.py3-none-any.whl --pip-extra-index-urls https://azuremlsdktestpypi.azureedge.net/sdk-release/Preview/E7501C02541B433786111FE8E140CAA1 | |
code --install-extension donjayamanne.githistory | |
code --install-extension eamodio.gitlens | |
code --install-extension eg2.vscode-npm-script | |
code --install-extension felipecaputo.git-project-manager | |
code --install-extension humao.rest-client | |
code --install-extension ms-mssql.mssql | |
code --install-extension ms-python.anaconda-extension-pack | |
code --install-extension ms-python.python | |
code --install-extension ms-toolsai.vscode-ai | |
code --install-extension ms-vscode.azure-account | |
code --install-extension ms-vscode.azurecli | |
code --install-extension ms-vscode.PowerShell | |
code --install-extension ms-vsts.team | |
code --install-extension msjsdiag.debugger-for-chrome | |
code --install-extension PeterJausovec.vscode-docker | |
code --install-extension redhat.vscode-yaml | |
code --install-extension remcoros.startanyshell | |
code --install-extension robertohuertasm.vscode-icons | |
code --install-extensionTyriar.shell-launcher | |
#setup ML Dev environment | |
conda create -y --name MLAthenaDev Python=3.6 cython numpy matplotlib seaborn pytest statsmodels pandas pyodbc scikit-learn joblib scipy ipykernel psutil | |
conda activate MLAthenaDev | |
pip install -y azure-cli azureml-sdk seasonal | |
python -m pip install --upgrade pip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment