pipx
                                
                                
                                
                                    pipx copied to clipboard
                            
                            
                            
                        Install and Run Python Applications in Isolated Environments
**How would this feature be useful?** This feature would add python modules to a virtualenv before installing the wanted tool **Describe the solution you'd like** for ex: `pipx install gnomecast`...
Background: I'm supporting a CLI tool built on Python3.6, that is used by non-developers. As such, pipx is very attractive for making this hassle free for the users of the...
**How would this feature be useful?** - Ability to attach docker volumes (dir paths) directly to a running or "stock" docker image. - Ability to archive, ship, and reuse/restore virtual...
**Describe the bug** After installing a package from a git URL, `pipx install --force git+https://github.com/foo/foo.git@ref` or `pipx upgrade --force foo` will not update the package, I have to do `pipx...
**How would this feature be useful?** See #633, and others. On macOS with Homebrew, our use of `sys.executable` to find the default (non-user-specified) python interpreter gives a more specific file...
# Feature request: emit the path to a Pipx-managed env, or delegate commands to a Pipx-managed Python binary ## How would this feature be useful? There have been a few...
Continuing the discussion in https://github.com/pipxproject/pipx/pull/615#issuecomment-770336369 > I'm assuming the following will not work: > ``` > pipx run bUiLd --help > ``` > It will download and install build properly...
**How would this feature be useful?** If a user creates a `.whl` file that contains an [`entry_point` `console_script`](https://python-packaging.readthedocs.io/en/latest/command-line-scripts.html#the-console-scripts-entry-point), normally they can run: ```bash (venv) $ pip install myproject-0.1.0-py3-none-any.whl ``` And...
Some packages don't offer console script for various reasons. We should be able to install these, perhaps by generating simpler wrappers that forward the invocation to the module. This could...
**How would this feature be useful?** Change `VenvInspectInformation.distributions` in `venv_inspect.py` to be type `Iterable[metadata.Distribution]`. (Or whatever type `importlib.metadata.distributions()` returns.) So we don't have to cast it to a `list()` which...