Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions bot/resources/tags/dashmpip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
embed:
title: "Install packages with `python -m pip`"
---
When trying to install a package via `pip`, it's recommended to invoke pip as a module: `python -m pip install your_package`.

**Why would we use `python -m pip` instead of `pip`?**
Invoking pip as a module ensures you know *which* pip you're using. This is helpful if you have multiple Python versions. You always know which Python version you're installing packages to.

**Note**
The exact `python` command you invoke can vary. It may be `python3` or `py`, ensure it's correct for your system.