You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/setup.md
+7-1
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,12 @@ Then, install using `pip`:
18
18
› pip install dbt
19
19
```
20
20
21
+
If you encounter SSL cryptography errors during install on OSX, make sure your copy of pip is up-to-date (via [cryptography.io](https://cryptography.io/en/latest/faq/#compiling-cryptography-on-os-x-produces-a-fatal-error-openssl-aes-h-file-not-found-error)
22
+
```bash
23
+
› pip install -U pip
24
+
› pip install -U dbt
25
+
```
26
+
21
27
## Configuration
22
28
23
29
To create your first dbt project, run:
@@ -28,7 +34,7 @@ To create your first dbt project, run:
28
34
29
35
This will do two things:
30
36
- create a directory at `./[project]` with everything you need to get started.
31
-
- create a directory at `~/.dbt/` for environment configuration.
37
+
- create a directory at `~/.dbt/` for environment configuration.[TODO]
32
38
33
39
Finally, configure your environment:
34
40
- supply project configuration within `[project]/dbt_project.yml`
0 commit comments