No apps associated with package ranger, googler
See original GitHub issueI don’t understand how pipx
determines which CLIs are made available to install. For example, youtube-dl
is, but ranger
and googler
are not. Is this a community-driven thing (if you want a particular package, add it to some index checked by pipx
? Is it on the packages themselves i.e. youtube-dl
has entry points structured in such a way that it is discoverable by pipx
whereas ranger
does not?
Issue Analytics
- State:
- Created 4 years ago
- Comments:19 (12 by maintainers)
Top Results From Across the Web
"'pipx install pip' fails with "No apps associated with package ...
Describe the bug I wanted to install the latest version of pip so I could play with pip cache and maybe use pip...
Read more >How do I troubleshoot issues with SYNC AppLink? - Ford
My phone is connected, my apps are running, but I still cannot find any apps. Sometimes apps do not properly close and re-open...
Read more >How to setup Android Auto and Apple Car Play in the 2021 ...
Trying to figure out how to setup Android Auto and Apple Car Play in the 2021 Ford Ranger ? This video shows you...
Read more >Troubleshoot common issues - Managed Google Play Help
If you open the managed Google Play store, and you see a message saying there are no apps to install, it could mean...
Read more >Ranger - Apps on Google Play
FOR INTERNAL USE ONLY. TIER Ranger enables you to tactically support the lifecycle of our fleet - ensuring that our vehicles are well ......
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 think it’s just that
ranger
isn’t calledranger
on PyPI - there’s another entirely unrelated package calledranger
, which coincidentally has no scripts/entry-points.pipx install ranger-fm
works for me.So in summary (for anyone viewing this Issue in the future)
setup.py
in their repositoryentry_point
orscripts
in its package specification (most likely insetup.py
)Edited to add “For pipx installation”