Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
dbt [2022/11/21 12:13] – created david | dbt [2025/05/01 14:28] (current) – david | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== DBY on Win ====== | ||
+ | |||
+ | ===== Python ===== | ||
+ | |||
+ | Info: | ||
+ | - https:// | ||
+ | - https:// | ||
+ | - https:// | ||
+ | |||
+ | <code bat> | ||
+ | # Pyenv: https:// | ||
+ | Invoke-WebRequest -UseBasicParsing -Uri " | ||
+ | |||
+ | #Reopen PowerShell | ||
+ | |||
+ | # Python: | ||
+ | |||
+ | pyenv --version | ||
+ | pyenv install -l | ||
+ | pyenv install 3.13 | ||
+ | pyenv global 3.13 | ||
+ | |||
+ | #Reopen PowerShell | ||
+ | python --version | ||
+ | |||
+ | python -m pip list | ||
+ | python -m pip install -U pip | ||
+ | |||
+ | |||
+ | python -m venv venv | ||
+ | </ | ||
+ | |||
+ | <code bat> | ||
+ | .\venv\Scripts\activate | ||
+ | |||
+ | python.exe -m pip list | ||
+ | python.exe -m pip install --upgrade pip | ||
+ | |||
+ | |||
+ | python.exe -m pip install dbt-postgres | ||
+ | </ | ||
+ | |||
+ | ====== Unsorted Notes ====== | ||
+ | |||
+ | |||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | |||
<code bash> | <code bash> | ||
(venv) david@roman-halliday: | (venv) david@roman-halliday: |