Awesome idea! I'd love to try this out!
I tried to install it, but it seems there were dependencies issues with the requests package.
! pipx install flights
⎿ creating virtual environment...
installing flights...
Fatal error from pip prevented installation. Full pip output in file:
/Users/mtse/.local/pipx/logs/cmd_2026-03-29_09.52.02_pip_errors.log
pip seemed to fail to build package:
requests<3.0.0,>=2.32.3
Some possibly relevant errors from pip install:
ERROR: Cannot install flights because these package versions have conflicting
dependencies.
ERROR: ResolutionImpossible: for help visit
https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
Error installing flights.
❯ package versions have conflicting dependencies, isn't it installed in its own virtual env due to
pipx?
⏺ Yes, it is in its own venv — the isolation means it won't conflict with your other
tools/projects. But the conflict is within the flights package's own dependencies. The package
requires requests<3.0.0,>=2.32.3 and some other dependency it bundles needs an incompatible
version of the same (or a transitive) package. pipx can't fix that — it's a bug in the flights
package's dependency spec.
Awesome idea! I'd love to try this out!
I tried to install it, but it seems there were dependencies issues with the requests package.