Skip to content

Instantly share code, notes, and snippets.

View zuc's full-sized avatar

Michele Zuccala zuc

View GitHub Profile
@tconbeer
tconbeer / install_dbt_from_scratch_on_windows.txt
Created January 4, 2019 21:22
Install DBT from Scratch on Windows
# Any lines preceded by > can be typed or pasted directly into Powershell.
# This has been tested on Windows 10 and dbt v 0.12. Last updated Jan 4, 2019
# Before trying to follow this recipe, you need to set the Execution Policy
# You probably need to do this running Powershell as an admin
> Set-ExecutionPolicy RemoteSigned
# Next install chocolatey:
> iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))