Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafalwilinski/paip
A CLI that uses an AI to retry failed pip commands based on the output.
https://github.com/rafalwilinski/paip
llm pip pip3 python python3
Last synced: 19 days ago
JSON representation
A CLI that uses an AI to retry failed pip commands based on the output.
- Host: GitHub
- URL: https://github.com/rafalwilinski/paip
- Owner: RafalWilinski
- Created: 2024-08-21T21:06:15.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T08:54:48.000Z (3 months ago)
- Last Synced: 2024-10-12T18:04:51.574Z (about 1 month ago)
- Topics: llm, pip, pip3, python, python3
- Language: TypeScript
- Homepage: https://rwilinski.ai
- Size: 1.08 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# paip
> A CLI that uses an AI to retry failed pip commands based on the output.
![paip](./assets/why.png)
```bash
# Instead of
pip install -r requirements.txt# Do this
paip install -r requirements.txt
```## Installation
`paip` is distributed as a single executable file.
### MacOS
Using Homebrew:
```bash
brew tap RafalWilinski/paip https://github.com/RafalWilinski/paip.git
brew install paip
```## Development
[Bun](https://bun.sh) is required.
To install dependencies:
```bash
bun install
```To run:
```bash
bun run index.ts
```To compile `paip` to a single executable file:
```bash
bun build --compile --minify index.ts --outfile paip---
This project has been build in Cursor in ~30 minutes. Don't take it too seriously.