Last active
February 11, 2022 11:34
-
-
Save jgilfillan/c875f522cd9157b1bf33adbedeff51db 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
# ensure python 3 is installed | |
cd ~ | |
mkdir dbt-envs | |
cd dbt-envs | |
python -m venv dbt-env | |
.\dbt-env\Scripts\activate | |
# install dbt-core | |
git clone https://github.com/dbt-labs/dbt-core.git | |
cd dbt-core | |
pip install -r .\requirements.txt | |
dbt --version | |
cd .. | |
# install dbt-sqlserver | |
git clone https://github.com/dbt-msft/dbt-sqlserver.git | |
cd dbt-sqlserver | |
pip install . | |
# create new dbt project | |
# cd ~ | |
# mkdir dbt-sql-test | |
# cd dbt-sql-test | |
# dbt init sql-test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment