Basic Active environment

== Create environment ==

python -m venv /path/to/new/virtual/environment

python -m venv dev

>> Out of the main branch <<
python -m venv ../.dbtenv

== Activate the environment ==

C:\Users\leandro.buffone\Repo\DataBuildTool\DataBuildTool\dev\Scripts> .\activate

 

Dash:

source dev/Scripts/activate

>> Out of the main branch <<

source ../.dbtenv/Scripts/activate

>> Another way ignoring GIT <<

python3 -m venv .dbtenv
source .dbtenv/bin/activate

pip install dbt-synapse # or dbt-sqlserver or whatever

echo '.dbtenv/' > .gitignore