| 操作 | Homebrew (macOS) | npm (Node.js) | pip (Python) |
|---|---|---|---|
| インストール | brew install <pkg> | npm install <pkg> | pip install <pkg> |
| アップデート | 1. brew update 2. brew outdated 3. brew upgrade [<pkg>] | 1. npm outdated 2. npm update [<pkg>] | 1. pip list -o 2. pip install -U <pkg> |
| アンインストール | brew uninstall <pkg> | npm uninstall <pkg> | pip uninstall <pkg> |