-
-
Notifications
You must be signed in to change notification settings - Fork 214
feat: add pypa/pipx #39951
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add pypa/pipx #39951
Conversation
Thank you for your contribution! |
Test$ pipx --version
1.7.1
$ pipx install pycowsay
installed package pycowsay 0.0.0.2, installed using Python 3.13.5
These apps are now globally available
- pycowsay
These manual pages are now globally available
- man6/pycowsay.6
done! ✨ 🌟 ✨
$ pipx list
venvs are in /Users/shunsukesuzuki/.local/pipx/venvs
apps are exposed on your $PATH at /Users/shunsukesuzuki/.local/bin
manual pages are exposed at /Users/shunsukesuzuki/.local/share/man
package pycowsay 0.0.0.2, installed using Python 3.13.5
- pycowsay
- man6/pycowsay.6
$ ls ~/.local/pipx/venvs/pycowsay
bin include lib pipx_metadata.json pyvenv.cfg share
$ pycowsay mooo
----
< mooo >
----
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
$ which pycowsay
/Users/shunsukesuzuki/.local/bin/pycowsay https://pipx.pypa.io/stable/installation/#installation-options
|
Windows
I looked into this a bit. I tried to install pipx on Windows using aqua, but it didn't work. # yaml-language-server: $schema=https://raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json
packages:
- type: github_release
repo_owner: pypa
repo_name: pipx
description: Install and Run Python Applications in Isolated Environments
version_constraint: "false"
version_overrides:
- version_constraint: semver("<= 1.1.0") or Version == "1.3.0"
no_asset: true
- version_constraint: "true"
asset: pipx.pyz
format: raw
complete_windows_ext: false
overrides:
- goos: windows
files:
- name: pipx
link: pipx.exe $ pipx --version
time=2025-08-10T14:42:39Z level=fatal msg=aqua failed env=windows/amd64 error=it failed to start the process exe_name=pipx package_name=pypa/pipx package_version=1.7.1 program=aqua program_version=2.53.9 |
I have added pipx to aqua-registry, so I will use it with mise. aquaproj/aqua-registry#39951
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [aquaproj/aqua-registry](https://github.com/aquaproj/aqua-registry) | minor | `v4.398.0` -> `v4.400.0` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>aquaproj/aqua-registry (aquaproj/aqua-registry)</summary> ### [`v4.400.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.400.0) [Compare Source](aquaproj/aqua-registry@v4.399.0...v4.400.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.400.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.400.0) | aquaproj/aqua-registry@v4.399.0...v4.400.0 #### 🎉 New Packages [#​39951](aquaproj/aqua-registry#39951) [pypa/pipx](https://github.com/pypa/pipx) - Install and Run Python Applications in Isolated Environments [@​itochan](https://github.com/itochan) ### [`v4.399.0`](https://github.com/aquaproj/aqua-registry/releases/tag/v4.399.0) [Compare Source](aquaproj/aqua-registry@v4.398.0...v4.399.0) [Issues](https://github.com/aquaproj/aqua-registry/issues?q=is%3Aissue+milestone%3Av4.399.0) | [Merge Requests](https://github.com/aquaproj/aqua-registry/pulls?q=is%3Apr+milestone%3Av4.399.0) | aquaproj/aqua-registry@v4.398.0...v4.399.0 #### 🎉 New Packages [#​39932](aquaproj/aqua-registry#39932) [CQLabs/homebrew-dcm](https://github.com/CQLabs/homebrew-dcm) - Analyze and improve your code quality [@​itochan](https://github.com/itochan) [#​39941](aquaproj/aqua-registry#39941) [takaishi/tfdiff](https://github.com/takaishi/tfdiff): A CLI that shows attribute-level diffs between Terraform modules with clean, diff-like output #### Security [#​39917](aquaproj/aqua-registry#39917) ctron/oidc-cli: GitHub artifact attestations config [@​scop](https://github.com/scop) #### Fixes [#​39902](aquaproj/aqua-registry#39902) Re-scaffold Owloops/updo </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS41OC4yIiwidXBkYXRlZEluVmVyIjoiNDEuNjEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiUmVub3ZhdGUgQm90Il19-->
pipx is a tool that helps you install and run Python applications in isolated environments.
Windows is excluded from
supported_envs
because it requires an exe file to be generated, which is not included in the releases.Check List
Require signed commits
, so all commits must be signedcmdx s
to scaffold code