pieces-app / documentation

Official documentation for Pieces for Developers
https://docs.pieces.app
402 stars 50 forks source link

Incorrect Installation Instruction for `pynvim` in Neovim Plugin Documentation #562

Closed Debajyati closed 1 month ago

Debajyati commented 2 months ago

In the Neovim Plugin installation docs, it is specified to install pynvim via pip. The documentation provided the following installation command:
 

pip install pynvim

when I executed this command, I received the following error:

The error message indicated that the environment is externally managed and recommended using apt install to install system-wide Python packages.

Proposed Solution:

To correctly install pynvim on Debian-based systems, the documentation should be updated to include the following command:

sudo apt install python3-pynvim

System:

Ubuntu 24.04

Debajyati commented 2 months ago

I wish to solve the issue

Debajyati commented 2 months ago

Kindly review the changes

Debajyati commented 1 month ago

The issue is resolved and I am closing it.