Update git packages with pipx upgrade-all
See original GitHub issueThis might be a bit far fetched but imagine I’ve installed some package with --spec git+https:.../some_branch/
and that package gets an update i.e a new commit in some_branch
.
Can pipx pull those new changes upon pipx upgrade
? (AFAICT it doesn’t do this already).
Thanks!
Issue Analytics
- State:
- Created 5 years ago
- Comments:11 (3 by maintainers)
Top Results From Across the Web
Update injected packages. · Issue #79 · pypa/pipx - GitHub
-U, --upgrade Upgrade all specified packages to the newest available version. The handling of dependencies depends on the upgrade-strategy used.
Read more >Docs - pipx
Virtual Environments will be installed to $PIPX_HOME/venvs. ... an existing Virtual Environment upgrade Upgrade a package upgrade-all Upgrade all packages.
Read more >pipx · PyPI
Upgrades all packages within their virtual environments by running pip install --upgrade PACKAGE . pipx upgrade-all ...
Read more >How to "pip-upgrade" a (private) package from a VCS (git ...
i've installed a private package with : pip install git+https://gitlab.com/toto/titi.git@master. my private packge is:
Read more >Pipx : Python CLI package tool - GeeksforGeeks
upgrade-all Upgrade all packages. Runs `pip install -U <pkgname>` for each package. uninstall Uninstall a package; uninstall-all Uninstall all ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I could add a file to the virtual env. Something like a
.pipxrc
with JSON that includes various keys, the “spec” being one of them. Then pipx could recognize and read that file, and re-use the same origin for all updates.If people like this idea I can add it. As always, feel free to vote with a thumbs up or provide an alternative suggestion to vote on.
Yes, we’re getting close