Open valleydali opened 7 months ago
Hmm... it seems that Homebrew has a somewhat fraught relationship with Python. Homebrew's Python page has this to say:
It is possible to install some Python packages as formulae by using brew install xyz. We do not recommend using these formulae and instead recommend you install them with pip inside a virtualenv.
(My italics.)
So I resolved the problem by doing this:
% brew uninstall neovim-remote
% brew uninstall python-psutil
% brew install pipx
% pipx install neovim-remote
And now all is copacetic.
This makes me wonder whether neovim-remote should be a Homebrew formula at all.
nvr
depends onpython-psutil
, which has been deprecated by Homebrew.What can be done about this?