https://github.com/araxeus/pip-upgrade
Tiny cli utility to update all python/pip packages, written in Rust 🦀
https://github.com/araxeus/pip-upgrade
pip pip-update pip-upgrade
Last synced: 14 days ago
JSON representation
Tiny cli utility to update all python/pip packages, written in Rust 🦀
- Host: GitHub
- URL: https://github.com/araxeus/pip-upgrade
- Owner: Araxeus
- License: mit
- Created: 2023-02-25T10:40:19.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-31T18:27:45.000Z (11 months ago)
- Last Synced: 2025-04-13T07:56:12.253Z (14 days ago)
- Topics: pip, pip-update, pip-upgrade
- Language: Rust
- Homepage: https://crates.io/crates/pip-upgrade
- Size: 633 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pip-upgrade
> Made in Rust 🦀This tool is designed to help you upgrade your globally installed Python packages
## Installation
```bash
cargo install pip-upgrade
```## Available Commands
### `pip-upgrade`
This command will upgrade all of your installed Python packages to the latest version.

### `pip-upgrade --outdated`
This command will show you if any of your installed Python packages are out of date.
alias: `pip-upgrade -o` or `pip-upgrade o` or `pip-upgrade outdated`

### How it works
To get outdated packages, it will parse `pip list --outdated --format=json`
Then if upgrading, it will run `pip install --upgrade `.