neovim / pynvim

Python client and plugin host for Nvim
http://pynvim.readthedocs.io/en/latest/
Apache License 2.0
1.51k stars 118 forks source link

Can't install pynvim with pipx #522

Closed yozachar closed 1 year ago

yozachar commented 1 year ago
$ pipx install pynvim                                                           

No apps associated with package pynvim or its dependencies. If you are attempting to install a library, pipx should not be used. Consider using pip
or a similar tool instead.

related: #514

crowellel commented 1 year ago

As I understand it, pipx only works for applications that have cli entrypoints. As pynvim is purely a library and not an application with cli functionality it specifically will not work with pipx. See the following link for pipx vs pip comparison:

Comparison to Other Tools - pipx

In short, I don't believe this is an issue.