Use python -m pip install
in all examples
#3468
Labels
content
Improvements or additions to content
improvement
Use this when an area of the docs needs improvement as it's currently unclear
priority: high
Technical inaccuracy, missing/incorrect information, or broken links. Negatively affects workflows
Contributions
Link to the page on docs.getdbt.com requiring updates
Any page that includes
pip install
. (Dozens and dozens of pages!)Use something like the following to find them:
git grep "pip install" website/docs/
What part(s) of the page would you like to see updated?
Just like the examples in the pip documentation, replace all instances of
pip install
withpython -m pip install
Additional information
The rationale is explained well by others:
TLDR
This is considered a universal best practice because it works regardless of the situation whereas without
python -m
it may or may not work as intended. Always using the best practice helps teach other people about it.The text was updated successfully, but these errors were encountered: