Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-05-12T01:08:38.000Z (over 1 year ago)
- Last Synced: 2024-04-25T15:02:27.444Z (7 months ago)
- Topics: pip, pip-update, pip-upgrade
- Language: Rust
- Homepage: https://crates.io/crates/pip-upgrade
- Size: 639 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.
![upgrade.gif](https://github.com/Araxeus/pip-upgrade/raw/master/assets/upgrade.gif "Upgrade command")
### `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`
![outdated.gif](https://github.com/Araxeus/pip-upgrade/raw/master/assets/outdated.gif "--outdated command")
### How it works
To get outdated packages, it will parse `pip list --outdated --format=json`
Then if upgrading, it will run `pip install --upgrade `.