docs: Update supported package managers for pip (#37)

* docs: update supported package managers for pip

* Update README.md

Signed-off-by: Sahil Bansal <bansalsahil315@gmail.com>

---------

Signed-off-by: Sahil Bansal <bansalsahil315@gmail.com>
This commit is contained in:
Sahil Bansal
2025-06-10 18:46:32 +05:30
committed by GitHub
parent 53783c6604
commit 302e17fe48
+8 -2
View File
@@ -82,8 +82,8 @@ PMG supports the following package managers:
| --------------- | --------- | --------------------------- |
| `npm` | ✅ Active | `pmg npm install <package>` |
| `pnpm` | ✅ Active | `pmg pnpm add <package>` |
| `pip` | ✅ Active | `pmg pip install <package>` |
| `yarn` | 🚧 Planned | |
| `pip` | 🚧 Planned | |
| `poetry` | 🚧 Planned | |
| `uv` | 🚧 Planned | |
@@ -114,11 +114,12 @@ go install github.com/safedep/pmg@latest
## Usage
Install a package with `npm` or `pnpm`:
Install a package with `npm`, `pnpm`, or `pip`:
```bash
pmg npm install <package-name>
pmg pnpm add <package-name>
pmg pip install <package-name>
```
Set shell alias for convenience:
@@ -126,6 +127,7 @@ Set shell alias for convenience:
```bash
alias npm="pmg npm"
alias pnpm="pmg pnpm"
alias pip="pmg pip"
```
Continue using your favorite package manager as usual:
@@ -138,6 +140,10 @@ npm install <package-name>
pnpm add <package-name>
```
```bash
pip install <package-name>
```
### Silent Mode
Use the `--silent` flag to run PMG in silent mode: