Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.