-
Notifications
You must be signed in to change notification settings - Fork 985
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update pip syntax #5035
Merged
Merged
Update pip syntax #5035
Changes from 6 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
8225f53
Update pip syntax
mirnawong1 e3d709f
Merge branch 'current' into mirnawong1-patch-26
mirnawong1 78dd1c8
Merge branch 'current' into mirnawong1-patch-26
mirnawong1 c1f3968
Merge branch 'current' into mirnawong1-patch-26
mirnawong1 14ad4a4
Merge branch 'current' into mirnawong1-patch-26
mirnawong1 adb40a1
Merge branch 'current' into mirnawong1-patch-26
mirnawong1 5814db2
Merge branch 'current' into mirnawong1-patch-26
mirnawong1 f458199
Update pip-install.md
mirnawong1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -137,9 +137,11 @@ python -m pip install --upgrade dbt-core==0.19.0 | |||||
|
||||||
### `pip install dbt` | ||||||
|
||||||
Note that, as of v1.0.0, `pip install dbt` is no longer supported and will raise an explicit error. Since v0.13, the PyPI package named `dbt` was a simple "pass-through" of `dbt-core` and the four original database adapter plugins. For v1, we formalized that split. | ||||||
Note that, as of v1.0.0, `pip install dbt` is no longer supported and will raise an explicit error. Since v0.13, PyPI package named `dbt` was a simple "pass-through" of dbt-core and the four original database adapter plugins. | ||||||
|
||||||
If you have workflows or integrations that relied on installing the package named `dbt`, you can achieve the same behavior going forward by installing the same five packages that it used: | ||||||
Upon the release of dbt-core v1.0.0, `pip install dbt` was no longer a supported installation method by dbt Labs, and the `dbt` package on PyPI stopped receiving updates. In fall of 2023, the `dbt` package on PyPI became a supported method to install the [dbt Cloud CLI](/docs/cloud/cloud-cli-installation?install=pip#install-dbt-cloud-cli-in-pip). | ||||||
|
||||||
If you have workflows or integrations that relied on installing the package named `dbt`, ryou can achieve the same behavior going forward by installing the same five packages that it used: | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
```shell | ||||||
python -m pip install \ | ||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're saying the same thing back-to-back in two different tenses. Maybe this one can be combined with the above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
got it. i took the language from the issue here: #4515