forked from sfc-gh-dflippo/snowflake-dbt-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbt-conda-env.yml
33 lines (29 loc) · 926 Bytes
/
dbt-conda-env.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Use this command to create an isolated conda env:
# conda env create -f dbt-conda-env.yml --force
# Use this command to then switch to the env:
# conda activate dbt
# If you receive SSL errors due to your network firewall, try installing pip_system_certs by itself
# pip install -U pip_system_certs
### You may want to update your conda utility first:
# conda update -n base conda
# If your anaconda base is incredibly old, you may want to:
# conda install -n base anaconda=2023.03
# or update all packages to the current version:
# conda update -n base --all
name: dbt
channels:
- defaults
- https://repo.anaconda.com/pkgs/snowflake
- conda-forge
dependencies:
- python=3.10.*
- pip-system-certs
- pip
- pip:
- pip
- pip-system-certs
- dbt-core
- dbt-snowflake
- snowflake-connector-python[secure-local-storage,pandas]
- snowflake-snowpark-python[pandas]
- snowflake-ml-python